jhomephper 2015-08-11 13:11:37 2699次浏览 1条回复 0 0 0

为什么用Ajax CRUD Generator生成的列表页放在iframe中会让iframe疯涨不停?谁遇到过,求教。 iframe内容:

<div class="main-content">
    <iframe src="<?=\Yii::$app->urlManager->createUrl(['/site/desk']);?>" id="iframepage" frameBorder="0" scrolling="no" name="iframe" width="100%" allowtransparency="ture" onload="this.height = '493px';"></iframe>
</div>
<script type="text/javascript" language="javascript">
    function reinitIframe() {
        var iframe = document.getElementById("iframepage");
        try {
            var bHeight = iframe.contentWindow.document.body.scrollHeight;
            var dHeight = iframe.contentWindow.document.documentElement.scrollHeight;
            var height = Math.max(bHeight, dHeight);
            iframe.height = height;
        } catch (ex) {
        }
    }
    window.setInterval("reinitIframe()", 10);
</script>

声明:普通页面正常显示。

  • 回复于 2015-08-11 13:20 举报

    不是我说,JS能好好写么?setInterval怎么用可以查下手册么……

    <script type="text/javascript" language="javascript">
    (function(d) {
    	function reinitIframe() {
    		var iframe = d.getElementById("iframepage");
    		try {
    			var bHeight = iframe.contentw.d.body.scrollHeight;
    			var dHeight = iframe.contentw.d.dElement.scrollHeight;
    			var height = Math.max(bHeight, dHeight);
    			iframe.height = height;
    		} catch (ex) {
    		}
    	}
    	
    	setTimeout(reinitIframe, 10);
    })(document);
    </script>
    
    9 条回复
    回复于 2015-08-11 13:22 回复

    这是要解决iframe中的页面能够显示全的好不

    回复于 2015-08-11 13:24 回复

    显示不显示全,setIntervalsetTimeout的第一个参数类型也是Function,不是String大哥。

    回复于 2015-08-11 13:24 回复

    没这么用过,也不用一竿子觉得这样是错的啊

    回复于 2015-08-11 13:26 回复

    一样的效果好不好,双引号的

    回复于 2015-08-11 13:26 回复

    http://mdn.beonex.com/en/DOM/window.setInterval.html 活该你写不对,手册也不会看……

    回复于 2015-08-11 13:27 回复

    程序在我服务器里,对不对我还不知道?。

    回复于 2015-08-11 13:28 回复

    JS的单双引号有区别么?你当是CoffeeScript?再见……

    回复于 2015-08-11 13:28 回复

    不规范不代表错误,你的那些写法在我这里一个效果的,所以我才问的

    回复于 2015-08-11 13:29 回复

    拜拜

您需要登录后才可以回复。登录 | 立即注册