这个样子:
<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>
登录后复制
框架页面中不需要<body>标签,<frameset>标签不包括<noframes>标签,具体写法如下:
<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>标签到底应该放哪?的详细内容,更多请关注Work网其它相关文章!