jquery 的ready 函数

事实证明,jquery 的屌无需多言

查看网络上对ready 的解析也仅仅停留在使用层面上,我就想看看这是怎么实现的,上代码:

    // 当页面 完成之后,去除监听函数
    function completed() {
        document.removeEventListener("DOMContentLoaded", completed);
        window.removeEventListener("load", completed);
        jQuery.ready();
    }

    // Catch cases where $(document).ready() is called
    // after the browser event has already occurred.
    // Support: IE <=9 - 10 only
    // Older IE sometimes signals "interactive" too soon
    if (document.readyState === "complete" ||
        (document.readyState !== "loading" && !document.documentElement.doScroll)) {

        // Handle it asynchronously to allow scripts the opportunity to delay ready
        // 开始执行 ready 函数
        window.setTimeout(jQuery.ready);

    } else {

        // Use the handy event callback
        // 事实上,其是使用了 DOMContentLoaded 这个事件来监听dom 的
        document.addEventListener("DOMContentLoaded", completed);

        // A fallback to window.onload, that will always work
        // 兼容性处理, DOMContentLoaded 只兼容到 IE9 ,8及以下嘛....
        window.addEventListener("load", completed);
    }

 

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值