英 [fre?mz] 美 [fre?mz]
n.邊框;框架( frame的名詞復(fù)數(shù) );眼鏡框;組織
html noframes標(biāo)簽 語法
作用:元素可為那些不支持框架的瀏覽器顯示文本。
說明:noframes 元素位于 frameset 元素內(nèi)部。
注釋:如果瀏覽器有能力處理框架,就不會顯示出 frameset 元素中的文本。
html noframes標(biāo)簽 示例
<html> <frameset cols="25%,50%,25%"> <frame src="http://ipnx.cn/example/html/frame_a.html"> <frame src="http://ipnx.cn/example/html/frame_b.html"> <frame src="http://ipnx.cn/example/html/frame_c.html"> <noframes> <body>您的瀏覽器無法處理框架!</body> </noframes> </frameset> </html>