码迷,mamicode.com
首页 > Web开发 > 详细

js 滚动加载iframe框中内容

时间:2015-12-12 23:15:05      阅读:355      评论:0      收藏:0      [点我收藏+]

标签:

    var isIE6 = !!window.ActiveXObject&&!window.XMLHttpRequest;

    //滚动加载
    var scrollLoad =function(){
        $("#content iframe[_src]").each(function(){
                var t = $(this);
                if( t.offset().top<= $(document).scrollTop() + $(window).height()  )
                {
                    t.attr( "src",t.attr("_src") ).removeAttr("_src");
                }
        });//each E
    }

    scrollLoad();
    $(window).scroll(function(){ 
        if(isIE6){ btb.css("top", $(document).scrollTop()+30) }
        //scrollLoad();
    });

 

<iframe allowTransparency="true" scrolling="no" _src="demo/iframe/2.0-focus-iframe.html?&fade&true" frameborder="0"></iframe>

  

js 滚动加载iframe框中内容

标签:

原文地址:http://www.cnblogs.com/laneyfu/p/5042011.html

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