.IFrame
这个可能是大家最熟悉的. <IFRAME NAME="neepage" width=100% height=30 marginwidth=0 marginheight=0 SRC="import.htm" ></IFRAME> 加上它的一些属性可以实现一些透明,无滚动条等具体的效果.大家可以参考html语言的相关介绍2.Frameset
这就是大家熟悉的框架了 没什么好说的.看看相关的html就行3.<object>
<object type="text/x-scriptlet" data="import.htm" width=100% height=30></object>
<object id=editBox data="./" width="100%" height=500 type=text/x-scriptlet> 4.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>5.<script>
就是把相关的html文件转化为js文件.再在调用的时候用 <script src="import.js"></script> 这个方法有点要注意的 假如你是用来包含象头部,导航这些的话,建议不要用这个.不利于搜索引擎的搜集6.shtml
用include shtml文件的方式本文转自 netcorner 博客园博客,原文链接:http://www.cnblogs.com/netcorner/archive/2007/04/23/2912384.html ,如需转载请自行联系原作者