iframe全屏显示

时间:2014-12-28 15:24:58   收藏:0   阅读:239
window.onload = function() {
var winWidth = parseInt(document.documentElement.clientWidth);// 客户端浏览器宽度
var winHeight = parseInt(document.documentElement.clientHeight);// 客户端浏览器高度
// iframe全屏
document.getElementById("frmDialog").width = winWidth + "px";
document.getElementById("frmDialog").height = winHeight + "px";
// iframe半屏
//document.getElementById("frmDialog").width = (winWidth / 2) + "px";
//document.getElementById("frmDialog").height = (winHeight / 2) + "px";
};

<iframe id="frmDialog" src="http://www.163.com" frameborder="0" scrolling="auto" align="top" marginheight="0" marginwidth="0"></iframe>

原文:http://www.cnblogs.com/csharphuang/p/4189930.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!