码迷,mamicode.com
首页 > 其他好文 > 详细

iframe 样式控制

时间:2018-10-03 21:56:09      阅读:321      评论:0      收藏:0      [点我收藏+]

标签:get   framewin   hang   bre   获取   lin   body   样式   content   

<iframe src="..." scrolling="no" id="iframe"></iframe>
<script> function changeFrameHeight() {   var ifm = document.getElementById("iframe");   var iframeWindow = ifm.contentWindow;   var body = ifm.contentWindow.document.body;   if (iframeWindow.document.readyState == "complete") {     var iframeWidth, iframeHeight;     body.style.cssText = "word-wrap:break-word;";     //获取Iframe的内容实际宽度     iframeWidth = iframeWindow.document.documentElement.scrollWidth;     //获取Iframe的内容实际高度     iframeHeight = iframeWindow.document.documentElement.scrollHeight;     //设置Iframe的宽度     ifm.width = ‘500px‘;     //设置Iframe的高度     ifm.height = iframeHeight;   } } window.onresize = function () {   changeFrameHeight(); } window.onload = function () {   changeFrameHeight(); } </script>

 

iframe 样式控制

标签:get   framewin   hang   bre   获取   lin   body   样式   content   

原文地址:https://www.cnblogs.com/Doduo/p/9739172.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!