PHP前端开发

我们如何在HTML中添加一个无框架(noframe)部分?

百变鹏仔 4周前 (09-22) #HTML
文章标签 框架

使用 标签添加 noframe 部分。 HTML 标签用于处理不支持 标签的浏览器。此标记用于显示备用文本消息。

示例

<!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>