Javascript如何刷新iframe和div的宽与高。
发布网友
发布时间:2022-05-16 21:02
我来回答
共2个回答
热心网友
时间:2022-05-16 22:31
朋友,你好贴出我之前的例子希望能帮助你
var bheight = document.body.clientHeight;//获取body高度
//alert(bheight);
var hei = parseInt(bheight-document.getElementById("topDiv").offsetHeight);//减去获取白色固定层高度
//alert(hei);
document.getElementById("div1").style.height = hei-6;//topDiv之下div的高度
document.getElementById("video_div").style.height = hei;//左侧iframe 高度
这个js代码是写在页面底部的 ,也就是body结束标签下面