码迷,mamicode.com
首页 > 其他好文 > 详细

封装document.ready方法

时间:2014-12-14 00:36:50      阅读:251      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   ar   color   os   sp   on   div   

function $(fn){
    if(document.addEventListener){        //W3C
        document.addEventListener(‘DOMContentLoaded‘,function(){
            //注销事件,避免反复触发 
            document.removeEventListener(‘DOMContentLoaded‘,arguments.callee,false);
            fn();
        },false);
    }else{        //IE6、7、8
        (function(){
            try{
                document.documentElement.doScroll("left");
            }catch(e){
                return setTimeout(arguments.callee,5);
            }
            fn();
        })();
    }
};

 

调用方法:

    $(function(){
        alert(0)
    })

 

封装document.ready方法

标签:style   blog   io   ar   color   os   sp   on   div   

原文地址:http://www.cnblogs.com/aiweidong/p/4162115.html

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