We Recommend

HTML: The Definitive Guide HTML: The Definitive Guide
They teach you that learning HTML is like learning any other language and that reading a book of rules can only take you so far. Readers begin writing what may be their first Web page just two pages into the book's second chapter. From there on, they provide a wide range of HTML coding to allow readers to learn from good examples. The book includes a handy "cheat sheet" of HTML codes for quick reference.


Posted By

fabric1 on 11/26/06


Tagged

iframe object


Versions (?)


Who likes this?

1 person has marked this snippet as a favorite

oamaxa


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


Published in: HTML 


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

phpspot開発日誌より引用

このファイルでは、外部ファイルである、/exec/some.html というファイルを読み込んでいます。 IEの場合、タグにスタイルでサイズを指定しないと見えないので注意が必要です。

XHTMLではiframeタグは禁止されているのでValidにしたい場合はこっちを使ったほうがよいらしいです。

  1. <title>test</title>
  2. </head>
  3.  
  4. <!--[if IE]>
  5. <object classid="clsid:25336920-03F9-11CF-8FD0-00AA00686F13" data="/exec/some.html" style="width:100;height:100px">
  6. <p>non object</p>
  7. </object>
  8. <![endif]-->
  9. <!--[if !Firefox]> <-->
  10. <object type="text/html" data="/exec/some.html">
  11. <p>non object</p>
  12. <!--> <![endif]-->
  13.  
  14. </body>
  15. </html>

Report this snippet 

You need to login to post a comment.