gpt4 book ai didi

c# - 如何在另一个 html 页面中包含一个 html 页面(作为标题)?

转载 作者:太空宇宙 更新时间:2023-11-04 14:32:29 25 4
gpt4 key购买 nike

我正在尝试包含一个 html 页面,该页面将成为我主页的标题。两个页面都部署到不同的服务器。我目前使用框架来做这件事。页眉当前有一些固定宽度,我无法更改它的宽度我需要它来适应我主页的屏幕。是否可以使用框架,或者我可以使用其他方法吗?

最佳答案

您可以使用 php(如果您的服务器能够运行 php 文件)假设您的 html 文件名为“header.html”和“content.html”,则 php 文件可能如下所示:

<html>
<?php
$HEADER_URL = "www.testsiteheader.com/header.html";
Include($HEADER_URL);
Include("content.html");
?>
</html>

例如,这段代码:

<?php
Include("http://stackoverflow.com/questions/19047619/how-to-include-one-html-pageas-header-in-another-html-page");
?>

让网站看起来像这样: http://imgur.com/QB5MZu6

重要提示:您可能必须在您的 php-config 文件中更改它:

allow_url_include = Off

allow_url_include = On

关于c# - 如何在另一个 html 页面中包含一个 html 页面(作为标题)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19047619/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com