首页  >  文章  >  web前端  >  html:<noframes>标签到底应该放哪?

html:<noframes>标签到底应该放哪?

黄舟
黄舟原创
2017-06-30 10:16:171313浏览

这个样子:

<frameset ……>
<frame……略>
</frameset>
<noframes><body>
</body>
</noframes></html>。 还是应该这样?<frameset cols="25%,*"> 

<frame src="menu.htm" scrolling="no" name="Left"> 

<frame src="page1.htm" scrolling="auto" name="Main"> 

<noframes> 

<body> 

<p>对不起,您的浏览器不支持“帧”!</p> 

</body> 

</noframes> 

</frameset>

框架页面中不需要6c04bd5ca3fcae76e30b72ad730ca86d标签,f900b4fc197b16ab214eecf015bb6bd2标签不包括37f861bd36cef5b6406eba87d20a5bab标签,具体写法如下:

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>页面名称</title>
</head>

<FRAMESET border=0 name=main  rows=64,* frameBorder=no>
<FRAME name=topFrame src="frame_top.html" >
<FRAME name=mainFrame src="frame_main.html" >
</FRAMESET>

<noframes>对不起,您的浏览器不支持“框架页”!</noframes>

</HTML>
<frameset cols="25%,50%,25%">
<frame src="frame_a.html">
<noframes>
<body>您的浏览器无法处理框架!</body>
</noframes>
</frameset>

以上是html:<noframes>标签到底应该放哪?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn