?
This document uses PHP Chinese website manual Release
<noframes>
是個 HTML 元素,用于支持不支持 <frame>
元素的瀏覽器,或者這樣配置的瀏覽器。
你可以在<noframes>
中使用任何 HTML 元素,它預(yù)期可以在<body>
中看到,除了<frameset>
和<frame>
元素。
注:由于所有主流瀏覽器都支持幀,這個元素一般不需要使用。它也在 HTML5 中完全過時(shí),并且應(yīng)該避免使用,來遵循標(biāo)準(zhǔn)。
就像其它 HTML 元素那樣,這個元素支持 全局屬性。
<frameset cols="50%,50%"> <frame src="https://developer.mozilla.org/en/HTML/Element/frameset" /> <frame src="https://developer.mozilla.org/en/HTML/Element/frame" /> <noframes><p>It seems your browser does not support frames or is not configured do so.</p></noframes> </frameset>