美文网首页
iframe 跨域页面高度滚动处理

iframe 跨域页面高度滚动处理

作者: 木和土的杜 | 来源:发表于2019-07-15 11:14 被阅读0次
    简单点来说:

    a页面,需要通过iframe 引入b页面,需要将b页面完全展示在a页面,不用无脑的使用上面一个文章处理了,

    更优的处理方式:
    iframe不可以使用scrolling="no", iframe高==当前页面高即可,让iframe滚动起来就可以解决高度问题

    a.html
    <iframe
                src="http://b.html"
                id="externalFrame"
                frameborder="0"
                <!--scrolling="no"-->
                width="100%"
                style="border: 0px;margin: 0"
        ></iframe>
    <script>$("#externalFrame").css("height",$(window).height());<script>
    
    b.html 不用处理

    参考页面: a页面http://m.zhcw.com/fenxi/chart.jsp?lottery=FC_SSQ&type=170
    引入页面: b页面http://b.zhcw.com/chart/ZSSQ/SSQ_hongqiu.html

    相关文章

      网友评论

          本文标题:iframe 跨域页面高度滚动处理

          本文链接:https://www.haomeiwen.com/subject/umwgkctx.html