英 [freɪmz]   美 [freɪmz]  

n.邊框;框架( frame的名詞複數 );眼鏡框;組織

html noframes標籤 語法

作用:元素可為那些不支援框架的瀏覽器顯示文字。

說明:noframes 元素位於 frameset 元素內部。

註解:如果瀏覽器有能力處理框架,就不會顯示 frameset 元素中的文字。

html noframes標籤 範例

<html>

<frameset cols="25%,50%,25%">
  <frame src="http://www.php.cn/example/html/frame_a.html">
  <frame src="http://www.php.cn/example/html/frame_b.html">
  <frame src="http://www.php.cn/example/html/frame_c.html">

<noframes>
<body>您的浏览器无法处理框架!</body>
</noframes>

</frameset>

</html>
#