码迷,mamicode.com
首页 > Web开发 > 详细

在html文件引入其它html文件的几种方式

时间:2014-11-11 10:45:03      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:style   io   ar   sp   文件   on   art   cti   代码   

在html文件引入其它html文件的几种方式

简介:

 

1.IFrame引入,瞧一下下面的代码

 

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

 

2.<object>方法

 

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

 

 

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

 

 

 

纯静态页面只能用上边三种了

 

如果是动态页面就好办了,可以用include

 

<!--#include file="test1.asp"-->

 

如果服务器支持ssi可以用ssi

 

<!--#include virtual="文件名称"-->

 

<!--#include file="文件名称"-->

 

在html文件引入其它html文件的几种方式

标签:style   io   ar   sp   文件   on   art   cti   代码   

原文地址:http://www.cnblogs.com/cmblogs/p/4088721.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!