簡介:在論壇中常常有網(wǎng)友問到,可以在一個(gè)html的文件當(dāng)中讀取另一個(gè)html文件的內(nèi)容嗎?答案是確定
的,而且方法不只一種,在以前我只會使用iframe來引用,后來發(fā)現(xiàn)了另外的幾種方法,那今天就總結(jié)這
幾種方法讓大家參考一下,本人覺得第三種方式較好!
1.IFrame引入,看看下面的代碼
[代碼] <IFRAME NAME="content_frame" width=100% height=30 marginwidth=0 marginheight=0
SRC="import.htm" ></IFRAME>
你會看到一個(gè)外部引入的文件,但會發(fā)現(xiàn)有一個(gè)類似外框的東西將其包圍,可使用
[代碼] <iframe name="content_frame" marginwidth=0 marginheight=0 width=100% height=30
src="http://www.dvbbs.net/tech/asp/import.htm" frameborder=0></iframe>
但你會發(fā)現(xiàn)還會有點(diǎn)問題,就是背景色不同,你只要在引入的文件import.htm中使用相同的背景色也可以
,但如果你使用的是IE5.5的話,可以看看這篇關(guān)于透明色的文章 如果想引入的文件過長時(shí)不出現(xiàn)滾動條
的話在import.htm中的body中加入scroll=no
2.<object>方式
[代碼] <object style="border:0px" type="text/x-scriptlet" data="import.htm" width=100%
height=30></object>
3.Behavior的download方式
[代碼]
<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>