将需要调用的部分做成单独的页面,再用iframe语句插入就行
Iframe标记的使用格式是:
<Iframe src="URL" width="x" height="x" scrolling="[OPTION]" frameborder="x"></iframe>
src:文件的路径,既可是HTML文件,也可以是文本、ASP等;
width、height:"画中画"区域的宽与高;
scrolling:当SRC的指定的HTML文件在指定的区域不显不完时,滚动选项,如果设置为NO,则不出现滚动条;如为Auto:则自动出现滚动条。
有两种方法。1,<!--#includefile="wedding_bottom.html"-->注意这种方式被引入的html文件不能含有<html><head><body>标签。2,<iframe
width="869px"
height="768px"
id="windows"
name="windows"
frameborder="0"
src="hkprintingone.asp"
scrolling="auto"
style="overflow:scroll
overflow-x:hidden
overflow-x:hidden
!important
overflow-y:hidden
overflow-y:auto
!important
border-right:#F2A116
1px
solid"></iframe>
这种方式就没有上面的要求。