html页面中嵌入html页面

原文地址为: html页面中嵌入html页面

1、Iframe:

<iframe src="top1.html" frameBorder="0" width="900" scrolling="no" height="90"></iframe>

2、Behavior的download方式

<span id=show></span>
<IE:Download ID="oDownload" STYLE="behavior:url(#default#download)" />
<script>
function onDownloadDone(downDate){
showImport.innerHTML=downDate
}
oDownload.startDownload('b.htm',onDownloadDone)
</script>


转载请注明本文地址: html页面中嵌入html页面

猜你喜欢

转载自blog.csdn.net/w36680130/article/details/81385656