框架集在 IE 中不起作用

发布于 2024-08-29 10:01:12 字数 1160 浏览 7 评论 0原文

首先,为什么要使用框架集?

答:因为我老板告诉我的。

也就是说,我有 2 个文件。 Index.html 和 Head.html。

index.html 的内容:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/1999/REC-html401-19991224/frameset.dtd">
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
        <title>Site Title</title>
    </head>
    <frameset rows="122,*" FRAMEBORDER=NO FRAMESPACING=2 BORDER=0>
        <frame name="t" src="head.html" scrolling="no" marginheight="0" marginwidth="0">
        <frame name="b" src="http://www.website.com">
    </frameset>
    <noframes>
        <p>You have frames turned off on your browser, please turn it on and reload this page.</p>
    </noframes>
</html>

head.html 的内容:

<div style="border-bottom:2px solid #000;height:120px">
    <center>This is the frame head.</center>
</div>

该代码在除 Internet Explorer 7 和 8 之外的所有浏览器中都可以正常工作(我不关心 6)。我做错了什么吗?如果没有,那么在没有框架的情况下是否可以达到相同的效果,如果可以,如何实现?

First of all, why use a frame set in the first place you ask?

answer: Because my boss told me.

That been said, I have 2 files. Index.html and Head.html.

Contents of index.html:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/1999/REC-html401-19991224/frameset.dtd">
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
        <title>Site Title</title>
    </head>
    <frameset rows="122,*" FRAMEBORDER=NO FRAMESPACING=2 BORDER=0>
        <frame name="t" src="head.html" scrolling="no" marginheight="0" marginwidth="0">
        <frame name="b" src="http://www.website.com">
    </frameset>
    <noframes>
        <p>You have frames turned off on your browser, please turn it on and reload this page.</p>
    </noframes>
</html>

Contents of head.html:

<div style="border-bottom:2px solid #000;height:120px">
    <center>This is the frame head.</center>
</div>

The code works fine in all browsers except Internet Explorer 7 and 8 (I don't care about 6). Is there anything I am doing wrong, and if not then can the same effect be achieved without frames and if so how?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

夏末 2024-09-05 10:01:12

@ricebowl 如果你运行这 2 个页面,你会发现试图被框架的网站根本不会出现在 IE 中,但会出现在所有其他浏览器中。

@ricebowl If you run the 2 pages you will see that the website trying to be framed does not show up at all in IE but does show up in all other browsers.

等风也等你 2024-09-05 10:01:12

我在IE 7中尝试过,效果很好。我不知道你的问题到底是什么。

i tried in IE 7,it works well.i don't know exactly what is your problems。

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文