Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想创建我的网页,以便顶部的部分显示“欢迎!” 和下面的“主要部分”。当用户单击主要部分中的链接(例如,它链接到www.example.com)时,主要部分应更改为 的内容www.example.com,但顶部应保持不变。我怎样才能做到这一点?
www.example.com
我相信你正在寻找
<frameset>
标签:http ://www.w3schools.com/tags/tag_frameset.asp
在过去,这是使用框架完成的,但由于许多原因,它们将不再使用。尝试看一下iframes。
<frameset>HTML5 不支持该标记。虽然<iframe>有效,但它会影响您页面的可搜索性 (SEO),并且设置页面以正确滚动将是一件麻烦事,因为页面的“顶部”部分就像一个页面本身。
<iframe>
如果您在服务器上启用了 PHP,而不是使用 (i)frames,您应该将网页的“顶部”存储为单独的文件,如“top.php”,并在每个页面中包含它
include_once("top.php")