Return to Snippet

Revision: 1940
at November 26, 2006 17:13 by fabric1


Initial Code
<html>
<head>
<title>test</title>
</head>
<body>

<!--[if IE]>
<object classid="clsid:25336920-03F9-11CF-8FD0-00AA00686F13" data="/exec/some.html" style="width:100;height:100px">
<p>non object</p>
</object>
<![endif]-->
<!--[if !Firefox]> <-->
<object type="text/html" data="/exec/some.html">
<p>non object</p>
</object>
<!--> <![endif]-->

</body>
</html>

Initial URL
http://phpspot.org/blog/archives/2006/11/iframehtmlhtml.html

Initial Description
phpspot開発日誌より引用
--
このファイルでは、外部ファイルである、/exec/some.html というファイルを読み込んでいます。
IEの場合、タグにスタイルでサイズを指定しないと見えないので注意が必要です。
XHTMLではiframeタグは禁止されているのでValidにしたい場合はこっちを使ったほうがよいらしいです。
--

Initial Title
IFRAMEを使わずにHTMLファイルから他のHTMLファイルを読み込む方法

Initial Tags
object

Initial Language
HTML