将需要调用的部分做成单独的页面,再用iframe语句插入就行
Iframe标记的使用格式是:
<Iframe src="URL" width="x" height="x" scrolling="[OPTION]" frameborder="x"></iframe>
src:文件的路径,既可是HTML文件,也可以是文本、ASP等;
width、height:"画中画"区域的宽与高;
scrolling:当SRC的指定的HTML文件在指定的区域不显不完时,滚动选项,如果设置为NO,则不出现滚动条;如为Auto:则自动出现滚动条。
你可以将首页需要更新的内容都分别做成一个html,然后首页就使用iframe将各个需要更新的内容嵌进来,其余的几个html文件亦同样用iframe嵌入相应的html即可,其中iframe的使用方法如下:<iframe
src="相同更新内容的html页面路径"
frameborder="0"
scrolling="no"></iframe>
相当于你的首页将会是大概这样子:
<html>
<head>
<title>首页</title>
</head>
<body>
<div
class="header">
<iframe
src="header.html"
frameborder="0"
scrolling="no"></iframe>
</div>
<div
class="content">
<iframe
src="content1.html"
frameborder="0"
scrolling="no"></iframe>
<iframe
src="content2.html"
frameborder="0"
scrolling="no"></iframe>
<iframe
src="content3.html"
frameborder="0"
scrolling="no"></iframe>
<iframe
src="content4.html"
frameborder="0"
scrolling="no"></iframe>
</div>
<div
class="footer">
<iframe
src="footer.html"
frameborder="0"
scrolling="no"></iframe>
</div>
</body>
</html>
而二级页面可能只需要首页的头部,脚部,还有其中一部分内容
<html>
<head>
<title>首页</title>
</head>
<body>
<div
class="header">
<iframe
src="header.html"
frameborder="0"
scrolling="no"></iframe>
</div>
<div
class="content">
<iframe
src="content2.html"
frameborder="0"
scrolling="no"></iframe>
</div>
<div
class="footer">
<iframe
src="footer.html"
frameborder="0"
scrolling="no"></iframe>
</div>
</body>
</html>