This time I will show you how to use the content of the include file in the html file. What are the precautions when using the content of the include file in the html file. The following is a practical case. Get up and take a look.
Netizens often ask in forums, can I read the content of another html file in an html file? The answer is yes, and there is more than one method. In the past, I would only use iframe to cite , but later I found several other methods. So today I will summarize these methods for your reference. I I think the third way is better!
Several methods of introducing other html files in html files
<IFRAME NAME="content_frame" width=100% height=40 marginwidth=0 marginheight=0 SRC="import.htm" ></IFRAME>
<iframe name="content_frame" marginwidth=0 marginheight=0 width=100% height=40 src="import.htm" frameborder=0></iframe>
navigation
jump, jump inside iframe, and the content will be superimposed.2.<object
>Method<object style="border:0px" type="text/x-scriptlet" data="import.htm" width=100% height=30></object>
<span id=showImport></span> <IE:Download ID="oDownload" STYLE="behavior:url(#default#download)" /> <script> function onDownloadDone(downDate){ showImport.innerHTML=downDate } oDownload.startDownload('import.htm’,onDownloadDone) </script>
How to use HTML and CSS to make clear text
How to write flexible, stable, high-quality HTML and css code
How to use horizontal line annotations and code comments in HTML
The above is the detailed content of How to use the content of include files in html files. For more information, please follow other related articles on the PHP Chinese website!