使用jQuery,我们都知道很棒的.ready()函数:

$('document').ready(function(){});

然而,假设我想运行一个用标准JavaScript编写的函数,而没有库支持它,并且我想在页面准备好处理它后立即启动一个函数。正确的方法是什么?

我知道我能做到:

window.onload="myFunction()";

或者我可以使用body标签:

<body onload="myFunction()">

或者,我甚至可以在页面底部尝试所有内容,但结尾正文或html标记如下:

<script type="text/javascript">
    myFunction();
</script>

什么是以jQuery的$.ready()这样的方式发出一个或多个函数的跨浏览器(旧/新)兼容方法?


当前回答

如果您在不使用jQuery的情况下使用VANILLA纯JavaScript,则必须使用(Internet Explorer 9或更高版本):

document.addEventListener("DOMContentLoaded", function(event) {
    // Your code to run since DOM is loaded and ready
});

上面是jQuery.ready的等价物:

$(document).ready(function() {
    console.log("Ready!");
});

也可以这样编写SHORTHAND,jQuery将在就绪后运行。

$(function() {
    console.log("ready!");
});

不要与以下内容混淆(这并不意味着DOM准备就绪):

不要使用这种自动执行的IIFE:

 Example:

(function() {
   // Your page initialization code here  - WRONG
   // The DOM will be available here   - WRONG
})();

此IIFE不会等待DOM加载。(我甚至在谈论最新版本的Chrome浏览器!)

其他回答

在没有一个框架来实现所有跨浏览器兼容性的情况下,最简单的做法就是在正文末尾调用代码。这比onload处理程序执行得更快,因为它只等待DOM就绪,而不是所有图像加载。而且,这在每个浏览器中都有效。

<!doctype html>
<html>
<head>
</head>
<body>
Your HTML here

<script>
// self executing function here
(function() {
   // your page initialization code here
   // the DOM will be available here

})();
</script>
</body>
</html>

对于现代浏览器(IE9和更高版本以及Chrome、Firefox或Safari的任何版本),如果您希望能够实现类似于jQuery的$(document).ready()方法,您可以从任何地方调用该方法(而不必担心调用脚本的位置),您只需使用这样的方法:

function docReady(fn) {
    // see if DOM is already available
    if (document.readyState === "complete" || document.readyState === "interactive") {
        // call on next available tick
        setTimeout(fn, 1);
    } else {
        document.addEventListener("DOMContentLoaded", fn);
    }
}    

用法:

docReady(function() {
    // DOM is loaded and ready for manipulation here
});

如果您需要完全的跨浏览器兼容性(包括旧版本的IE),并且不想等待window.onload,那么您可能应该看看jQuery这样的框架是如何实现其$(document).ready()方法的。这取决于浏览器的功能。

让您稍微了解一下jQuery的功能(无论放置脚本标记在哪里,它都能工作)。

如果支持,它将尝试以下标准:

document.addEventListener('DOMContentLoaded', fn, false);

回退到:

window.addEventListener('load', fn, false )

或者对于旧版本的IE,它使用:

document.attachEvent("onreadystatechange", fn);

回退到:

window.attachEvent("onload", fn);

而且,在IE代码路径中有一些我不太熟悉的变通方法,但它似乎与框架有关。


这里是用纯javascript编写的jQuery的.ready()的完整替代品:

(function(funcName, baseObj) {
    // The public function name defaults to window.docReady
    // but you can pass in your own object and own function name and those will be used
    // if you want to put them in a different namespace
    funcName = funcName || "docReady";
    baseObj = baseObj || window;
    var readyList = [];
    var readyFired = false;
    var readyEventHandlersInstalled = false;

    // call this when the document is ready
    // this function protects itself against being called more than once
    function ready() {
        if (!readyFired) {
            // this must be set to true before we start calling callbacks
            readyFired = true;
            for (var i = 0; i < readyList.length; i++) {
                // if a callback here happens to add new ready handlers,
                // the docReady() function will see that it already fired
                // and will schedule the callback to run right after
                // this event loop finishes so all handlers will still execute
                // in order and no new ones will be added to the readyList
                // while we are processing the list
                readyList[i].fn.call(window, readyList[i].ctx);
            }
            // allow any closures held by these functions to free
            readyList = [];
        }
    }

    function readyStateChange() {
        if ( document.readyState === "complete" ) {
            ready();
        }
    }

    // This is the one public interface
    // docReady(fn, context);
    // the context argument is optional - if present, it will be passed
    // as an argument to the callback
    baseObj[funcName] = function(callback, context) {
        if (typeof callback !== "function") {
            throw new TypeError("callback for docReady(fn) must be a function");
        }
        // if ready has already fired, then just schedule the callback
        // to fire asynchronously, but right away
        if (readyFired) {
            setTimeout(function() {callback(context);}, 1);
            return;
        } else {
            // add the function and context to the list
            readyList.push({fn: callback, ctx: context});
        }
        // if document already ready to go, schedule the ready function to run
        if (document.readyState === "complete") {
            setTimeout(ready, 1);
        } else if (!readyEventHandlersInstalled) {
            // otherwise if we don't have event handlers installed, install them
            if (document.addEventListener) {
                // first choice is DOMContentLoaded event
                document.addEventListener("DOMContentLoaded", ready, false);
                // backup is window load event
                window.addEventListener("load", ready, false);
            } else {
                // must be IE
                document.attachEvent("onreadystatechange", readyStateChange);
                window.attachEvent("onload", ready);
            }
            readyEventHandlersInstalled = true;
        }
    }
})("docReady", window);

最新版本的代码在GitHub上公开共享,网址为https://github.com/jfriend00/docReady

用法:

// pass a function reference
docReady(fn);

// use an anonymous function
docReady(function() {
    // code here
});

// pass a function reference and a context
// the context will be passed to the function as the first argument
docReady(fn, context);

// use an anonymous function with a context
docReady(function(context) {
    // code here that can use the context argument that was passed to docReady
}, ctx);

这已经在以下方面进行了测试:

IE6 and up
Firefox 3.6 and up
Chrome 14 and up
Safari 5.1 and up
Opera 11.6 and up
Multiple iOS devices
Multiple Android devices

工作实施和试验台:http://jsfiddle.net/jfriend00/YfD3C/


以下是它的工作原理总结:

创建一个IIFE(立即调用的函数表达式),这样我们就可以拥有非公共状态变量。声明公共函数docReady(fn,context)当调用docReady(fn,context)时,检查ready处理程序是否已启动。如果是这样,只需将新添加的回调安排为在这个JS线程完成setTimeout(fn,1)后立即启动。如果就绪处理程序尚未启动,则将此新回调添加到稍后要调用的回调列表中。检查文档是否已准备就绪。如果是,请执行所有就绪的处理程序。如果我们还没有安装事件侦听器以了解文档何时准备就绪,那么现在就安装它们。如果document.addEventListener存在,则对“DOMContentLoaded”和“load”事件使用.addEventLister()安装事件处理程序。“负载”是安全的备份事件,不应需要。如果document.addEventListener不存在,则使用.attachEvent()为“onreadystatechange”和“onload”事件安装事件处理程序。在onreadystatechange事件中,检查document.readyState==“complete”,如果是,则调用一个函数来激发所有就绪处理程序。在所有其他事件处理程序中,调用一个函数来激发所有就绪的处理程序。在调用所有就绪处理程序的函数中,检查状态变量以查看是否已启动。如果有,什么也不做。如果我们还没有被调用,那么在就绪函数数组中循环,并按添加顺序调用每个函数。设置一个标志以指示这些都已被调用,因此它们不会被执行多次。清除函数数组,以便释放它们可能使用的任何闭包。

使用docReady()注册的处理程序保证按其注册顺序被激发。

如果在文档准备就绪后调用docReady(fn),则将使用setTimeout(fn,1)在当前执行线程完成后立即执行回调。这允许调用代码始终假设它们是稍后调用的异步回调,即使稍后在JS的当前线程完成并保持调用顺序时也是如此。

在IE9、最新的Firefox和Chrome中测试,IE8也支持。

document.onreadystatechange = function () {
  var state = document.readyState;
  if (state == 'interactive') {
      init();
  } else if (state == 'complete') {
      initOnCompleteLoad();
  }
}​;

例子:http://jsfiddle.net/electricvisions/Jacck/

UPDATE-可重用版本

我刚刚开发了以下内容。它相当简单地等同于jQuery或Dom ready,没有向后兼容性。它可能需要进一步完善。在最新版本的Chrome、Firefox和IE(10/11)中进行了测试,应该可以在旧版浏览器中工作,如评论所述。如果发现任何问题,我将进行更新。

window.readyHandlers = [];
window.ready = function ready(handler) {
  window.readyHandlers.push(handler);
  handleState();
};

window.handleState = function handleState () {
  if (['interactive', 'complete'].indexOf(document.readyState) > -1) {
    while(window.readyHandlers.length > 0) {
      (window.readyHandlers.shift())();
    }
  }
};

document.onreadystatechange = window.handleState;

用法:

ready(function () {
  // your code here
});

它是为了处理JS的异步加载而编写的,但除非您正在缩小,否则您可能需要先同步加载此脚本。我发现它在开发中很有用。

现代浏览器还支持异步加载脚本,这进一步增强了体验。支持异步意味着可以在呈现页面的同时同时下载多个脚本。当依赖于异步加载的其他脚本或使用minifier或类似browserfy的东西来处理依赖项时,请注意。

您的方法(将脚本放在结束体标记之前)

<script>
   myFunction()
</script>
</body>
</html>

是支持新旧浏览器的可靠方式。

如果您在不使用jQuery的情况下使用VANILLA纯JavaScript,则必须使用(Internet Explorer 9或更高版本):

document.addEventListener("DOMContentLoaded", function(event) {
    // Your code to run since DOM is loaded and ready
});

上面是jQuery.ready的等价物:

$(document).ready(function() {
    console.log("Ready!");
});

也可以这样编写SHORTHAND,jQuery将在就绪后运行。

$(function() {
    console.log("ready!");
});

不要与以下内容混淆(这并不意味着DOM准备就绪):

不要使用这种自动执行的IIFE:

 Example:

(function() {
   // Your page initialization code here  - WRONG
   // The DOM will be available here   - WRONG
})();

此IIFE不会等待DOM加载。(我甚至在谈论最新版本的Chrome浏览器!)

准备好的

function ready(fn){var d=document;(d.readyState=='loading')?d.addEventListener('DOMContentLoaded',fn):fn();}

像这样使用

ready(function(){
    //some code
});

用于自调用代码

(function(fn){var d=document;(d.readyState=='loading')?d.addEventListener('DOMContentLoaded',fn):fn();})(function(){

    //Some Code here
    //DOM is avaliable
    //var h1s = document.querySelector("h1");

});

支持:IE9+