<iframe src="top1.html" frameBorder="0" width="900" scrolling="no" height="90"></iframe>
用这个引进网页头部top1.html。。请问导航是下拉菜单时。。怎么处理iframe窗口大小?...
用这个引进网页头部top1.html。。请问导航是下拉菜单时。。怎么处理iframe窗口大小?
展开
2个回答
展开全部
通过js 来控制自适应高度;
html代码:
<iframe src="需要连接的iframe地址" id="iframepage" name="iframepage" frameBorder=0 scrolling=no width="100%" onLoad="iFrameHeight()" ></iframe>
js代码:
<script type="text/javascript" language="javascript">
function iFrameHeight() {
var ifm= document.getElementById("iframepage");
var subWeb = document.frames ? document.frames["iframepage"].document : ifm.contentDocument;
if(ifm != null && subWeb != null) {
ifm.height = subWeb.body.scrollHeight;
}
}
</script>
楼主怎么不用DIV+CSS来布局? 那样不是灵活很多么。。
html代码:
<iframe src="需要连接的iframe地址" id="iframepage" name="iframepage" frameBorder=0 scrolling=no width="100%" onLoad="iFrameHeight()" ></iframe>
js代码:
<script type="text/javascript" language="javascript">
function iFrameHeight() {
var ifm= document.getElementById("iframepage");
var subWeb = document.frames ? document.frames["iframepage"].document : ifm.contentDocument;
if(ifm != null && subWeb != null) {
ifm.height = subWeb.body.scrollHeight;
}
}
</script>
楼主怎么不用DIV+CSS来布局? 那样不是灵活很多么。。
更多追问追答
追问
请问网页头部一般是怎么引进一个网页的?静态网页。。不是iframe吗?
追答
DIV+CSS 静态网页最好就只用DIV+CSS布局。。副页面,,在拷贝一份过去就行~~
另外最主要的是,看你要建什么类型的站。。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询