静态页面包含文件 ,HTML中包含文件

1.IFrame
这个可能是大家最熟悉的.
<IFRAME NAME="neepage" width=100% height=30 marginwidth=0 marginheight=0 SRC="import.htm" ></IFRAME>
加上它的一些属性可以实现一些透明,无滚动条等具体的效果.大家可以html教程的相关介绍

2.Frameset

[html]
[head]
[meta http-equiv="Content-Type" content="text/html; charset=gb2312"]
[title]包含页面[/title]
[/head]
[frameset framespacing="0" frameborder="NO" border="0"]
[frame src="http://www.google.com" name="mainFrame"]
[/frameset]
[noframes][body][/body][/noframes]
[/html]
这就是大家熟悉的框架了
没什么好说的.看看html教程就行

3.<object> 个人觉得此法方便比较好

<object type="text/x-scriptlet" data="import.htm" width=100% height=30></object>

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、HTML中执行SSL
存在这种情况,主机只默认的是index.html,但是需要首页是动态的,除了上述方法,可以使用SSL
[!--#exec cgi="index.pl" --]  

你可能感兴趣的:(html,框架,搜索引擎,Google,IE)