使用iframe在手机中嵌套页面

使用iframe嵌套网页

   <iframe id="show-iframes" frameborder="0" name="showHere" scrolling="auto" src=""></iframe>

获取手机屏幕的宽度自适应屏幕

var oIframe = document.getElementById('show-iframe');
            const deviceWidth = document.documentElement.clientWidth;
            const deviceHeight = document.documentElement.clientHeight;
            oIframe.style.width = deviceWidth + 'px';
            oIframe.style.height = deviceHeight + 'px';
            let id = this.$route.params.id;
             oIframe.src = url
posted @ 2018-03-07 14:14  Sarah119  Views(4557)  Comments(0Edit  收藏  举报