Html中引用其他html頁面的幾種方式

lsj1992g發表於2019-03-15

Html中引用其他html頁面的幾種方式

1、iframe

<!--下面是第一種方法,用iframe標籤引入,為了好看,這裡可以將它的border設定為無-->
<iframe src="html/template1.html" width="100%" height="50" frameborder="0"></iframe>

複製程式碼

2、object

<object data="html/template2.html" width="100%" height="50" ></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>
複製程式碼

相關文章