html noframes標籤元素可為那些不支援框架的瀏覽器顯示文本,noframes元素位於frameset元素內部,如果瀏覽器有能力處理框架,就不會顯示出frameset元素中的文字。
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>
以上是html noframes標籤怎麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!