<noframes> 【フレームが表示できない環境での表示内容を指定する】
[IE5] [IE6] [IE7] [Fx1] [Fx2] [Op8] [Op9] [Ns6] [Ns7]
<noframes>タグは、フレームが表示できない環境での表示内容を指定します。
<noframes>は</frameset>タグの直前に記述します。フレームに対応している環境では表示されません。
<noframes>の使用例
ソース
<html>
<head>
<title>フレームテスト</title>
</head>
<frameset rows="150px,*">
<frame src="framesample01.html" name="f-header">
<frameset cols="150px,*">
<frame src="framesample02.html" name="f-menu">
<frame src="framesample03.html" name="f-body">
</frameset>
<noframes>
このページはフレームを使用しています。
</noframes>
</frameset>
</html>
<head>
<title>フレームテスト</title>
</head>
<frameset rows="150px,*">
<frame src="framesample01.html" name="f-header">
<frameset cols="150px,*">
<frame src="framesample02.html" name="f-menu">
<frame src="framesample03.html" name="f-body">
</frameset>
<noframes>
このページはフレームを使用しています。
</noframes>
</frameset>
</html>
表示すると
サンプルページ
※新規ウィンドウで表示します。
※新規ウィンドウで表示します。
フレーム 関連項目
<frameset> | ウィンドウを分割する |
<frame> | フレームに表示するファイルを指定する |
<noframes> | フレームが表示できない環境での表示内容を指定する |
<iframe> | インラインフレームを作成する |