外部の html ファイルを自分のファイルに挿入するにはどうすればよいですか?
例えば:
<div id="header">
Here show the external HTML code in the file, for example: name.html
</div>
どうもありがとうございました!
外部の html ファイルを自分のファイルに挿入するにはどうすればよいですか?
例えば:
<div id="header">
Here show the external HTML code in the file, for example: name.html
</div>
どうもありがとうございました!
もう 1 つの方法は、object タグを使用することです。これは Chrome、IE、Firefox、Safari、Opera で動作します。
<object data="html/stuff_to_include.html">
Your browser doesn’t support the object tag.
</object>
詳細については、 http://www.w3schools.com/tags/tag_object.aspをご覧ください。