HTML元素 - noframes定义 包含对于那些不支持 FRAMESET 元素的浏览器使用的 HTML。 Contains HTML for browsers that do not support FRAMESET elements. 注释 此元素在 Internet Explorer 3.0 及以上版本的 HTML 中可用,在 Internet Explorer 4.0 及以上版本的脚本中可用。
html中的标签。完整的样式是
<noframes>
</noframes>
定义在不支持帧的浏览器中显示您要给用户的提示。
如:
<html>
<frameset cols="25%,50%,25%">
<frame src="/example/html/frame_a.html">
<frame src="/example/html/frame_b.html">
<frame src="/example/html/frame_c.html">
<noframes>
<body>您的浏览器无法处理框架!</body>
</noframes>
</frameset>
</html>