当前位置:七七站长网网页设计HTML教程 → 设计内容

html页面中嵌入另一个html页面

减小字体 增大字体 作者:佚名  来源:不详  发布时间:2007-11-20 15:53:36

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>