萬盛學電腦網

 萬盛學電腦網 >> 網頁制作 >> Html5 >> 在html頁面中包含靜態或動態頁面方法

在html頁面中包含靜態或動態頁面方法

1.可以用 download 行為下載後再用 innerHTML 特性顯示出來。 
具體步驟:

<span id="demo" src="demo.htm" 
 style="behavior:url(#default#download)"></span>  
<SCRIPT> 
 function window.onload(){ 
   demo.startDownload(demo.src,fnDownload) 
 } 
 function fnDownload(oSource){ 
   demo.innerHTML=oSource 
 } 
 </SCRIPT> 
     
被調用頁demo.htm的代碼。 
     
<span style="color:red;font:bold 12px Tahoma"> 
測試 演示 TEST test DEMO demo</span>

注意:在本例中id為demo的對象必須設置它的默認行為為download。
 


2.script。需要注意的是include.js裡不能再包含<script>和</script>,擴展名隨意,所有內容必須經由 write()、wirteln()、innerHTML、innerText、outerHTML或outerText 輸出顯示。代碼示例:

<script src="include.js"></script>

 <script language="JavaScript" src="http://www.newsccn.com/count.php?contentid={$contentid}"></script>

3.iframe。這個不用多解釋了,有疑問的話請第一部分第六章。代碼示例:

<iframe src="index.asp"></iframe>

4.Object(Scriptlets組件)。代碼示例:

 有滾動條<br> 
 <object data="index.asp" type="text/html" width=400 height=300></object> 
 <br>無滾動條<br> 
 <object style="border: 0px" type="text/x-scriptlet" data="index.asp" width=400 Height=300></object>

5.SSI(服務器端包含)。代碼示例:

<!--#include file="index.html"--> 
<!--#include virtual="/index.html"-->

copyright © 萬盛學電腦網 all rights reserved