html:标签到底应该放哪?
程序员文章站
2022-04-24 19:21:56
...
这个样子:
<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>标签到底应该放哪?的详细内容,更多请关注其它相关文章!
上一篇: thinkPHP3.2 怎么调用Common 中的公共函数
下一篇: php菜鸟的基础有关问题