如何才能在 HTML 中添加无框架部分?


使用 <noframes> 标记添加无框架部分。HTML <noframes> 标记用于处理不支持 <frame> 标记的浏览器。该标记用于显示备用文本消息。

例如

<!DOCTYPE html>
<html>
   <head>
      <title>HTML noframes Tag</title>
   </head>
   <frameset cols = "200, *">
      <frame src = "/html/menu.htm" name = "menu_page" />
      <frame src = "/html/main.htm" name = "main_page" />
      <noframes>
         <body>
            Your browser does not support frames.
         </body>
      </noframes>
   </frameset>
</html>

更新于: 03-Mar-2020

170 次浏览

开启你的 职业生涯

完成课程并获得认证

开始
广告