function reinitIframe(){
var iframe = document.getElementById("report_id");
try{
var bHeight = iframe.contentWindow.document.body.scrollHeight;
var dHeight = iframe.contentWindow.document.documentElement.scrollHeight;
var height = Math.max(bHeight, dHeight);
iframe.height = height;
console.log(height);
}catch(ex){}
}
iframe 去掉滚动条
最新推荐文章于 2022-11-15 17:28:35 发布