1. 程式人生 > >HTML頁面巢狀

HTML頁面巢狀

在html頁面引入另一個頁面的三種方式:

  1. <IFRAME NAME="content_frame" width=100% height=30 marginwidth=0 marginheight=0 SRC="import.htm" ></IFRAME>

  2. <object style="border:0px" type="text/x-scriptlet" data="import.htm" width=100% height=30></object>

  3. <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>

更多文章請掃碼關注公眾號,有問題的小夥伴也可以在公眾號上提出哦。

這裡寫圖片描述