如何在 HTML 中添加 noframe 部分?


使用 <noframes> 标签添加 noframe 部分。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>

更新于: 2020 年 3 月 3 日

170 次浏览

助力 职业发展

完成课程认证

开始学习
广告