获取iframe高度

2020-04-14  本文已影响0人  royluck
// iframe已加载完毕
            if (iframe.attachEvent) {
                iframe.attachEvent('onload', function () {
                    let offsetHeight = document.getElementById('iframe').contentWindow.document.documentElement.offsetHeight;
                    that.iframeHeight = offsetHeight;
                })
            } else {
                iframe.onload = function () {
                    // iframe加载完毕以后执行操作
                    let offsetHeight = document.getElementById('iframe').contentWindow.document.documentElement.offsetHeight;
                    that.iframeHeight = offsetHeight;
                }
            }
注意这里会出现跨域问题
上一篇 下一篇

猜你喜欢

热点阅读