在jQuery 3.0的版本前, ready經典用法是用一個匿名函數,像這樣:
$(document).ready(function() { // Handler for .ready() called. });
jQuery 3.0 ready() 變化
在jQuery 3.0發布之前,有以下幾種方法稱之為ready方法:
在document元素上操作: $(document).ready(handler);
在空元素上操作: $().ready(handler);
或者直接(即不在一個具體的元素上)操作: $(handler);
上述所有命名的變種在功能上是等價的。無論是哪個元素,在DOM加載完畢之後其指定的處理程序都將會被調用。換句話說,這裡的DOM加載完畢並不表示在文檔中的某個具體的元素,比如img元素,加載完畢。相反,這裡表示的是整個DOM樹加載完畢。
在jQuery 3.0中,除了$(handler)
其他的ready方法都被棄用。
官方聲明為此:
這是因為選擇器並沒有和ready()建立聯系,不僅低效而且會導致浏覽器引擎對該方法的行為進行不正確的假設。
ready 事件和 load 事件的區別
當DOM加載完畢且元素能夠被安全訪問時就會觸發ready事件。另一方面,load事件卻在DOM和所有資源加載後觸發。
可以像下面這樣使用load事件:
$(window).on("load", function(){ // Handler when all assets (including images) are loaded });
這樣的話,不僅僅要等到DOM結構能完全訪問,而且還需要等到所有的圖片資源完全加載完畢(加載時間取決於圖片文件大小)才能執行函數。
正常的DOM操作你可能不需要load事件,但是如果你想要在所有的資源被加載完畢之前展示一個旋轉的加載器樣式,比如,又或者你想要用JS計算一下圖片的大小,這可能是一個好的選擇。
你可能不需要jQuery.ready()
ready 方法可以確保代碼只在所有DOM元素能被安全操縱時才執行。 但這意味著什麼呢?這意味著當你要執行的js代碼嵌在HTML中某個片段中時,浏覽器也要加載完以下元素才能執行。
就像下面這個例子一樣:
<!doctype html> <html> <head> <meta charset="utf-8"> <title>.ready() tutorial</title> <script src="https://cdn.jsdelivr.net/jquery/latest/jquery.min.js"></script> <script> $(function(){ // .ready() callback, is only executed when the DOM is fully loaded var length = $("p").length; // The following will log 1 to the console, as the paragraph exists. // This is the evidence that this method is only called when the // DOM is fully loaded console.log(length); }); </script> </head> <body> <p>I'm the content of this website</p> </body> </html>
如果你要執行的javascript代碼放在body末尾,你就可能不需要使用ready()
方法,因為浏覽器解析到javascript時你可能試圖操縱和訪問的DOM元素已經被加載完了:
<!doctype html> <html> <head> <meta charset="utf-8"> <title>.ready() tutorial</title> </head> <body> <p>I'm the content of this website</p> <script src="https://cdn.jsdelivr.net/jquery/latest/jquery.min.js"></script> <script> var length = $("p").length; // The following will log 1 to the console, as the paragraph exists. console.log(length); </script> </body> </html>
原生JavaScript ready()替代
對於現代浏覽器以及IE9+,你可以通過監聽 DOMContentLoaded 事件實現ready()
相同的功能:
document.addEventListener("DOMContentLoaded", function(){ // Handler when the DOM is fully loaded });
但是,請注意,如果事件已經發射,回調將不會被執行。為了確保回調總是運行,jQuery檢查文檔reference)的“readyState”屬性,如果屬性值變為 complete,則立即執行回調函數:
var callback = function(){ // Handler when the DOM is fully loaded }; if ( document.readyState === "complete" || (document.readyState !== "loading" && !document.documentElement.doScroll) ) { callback(); } else { document.addEventListener("DOMContentLoaded", callback); }
包括domReady庫,已經實現了這個解決方案。
老版本的IE浏覽器
對於IE8及以下的浏覽器,你能使用onreadystatechange 事件去監聽文檔的readyState 屬性:
document.attachEvent("onreadystatechange", function(){ // check if the DOM is fully loaded if(document.readyState === "complete"){ // remove the listener, to make sure it isn't fired in future document.detachEvent("onreadystatechange", arguments.callee); // The actual handler... } });
或者你可以使用Load事件,如jQuery,這樣可以在任何浏覽器上運行。這也會導致一個時間延遲,因為它會等待所有的資產被加載。
注意,在這個解決方案中你也要檢查readyState,如上文所述,這樣能確保回調總是能夠被執行。
總結
以上就是這篇文章的全部內容了,如果你正在尋找一種原生js替代ready方法,你可以結合DOMContentLoaded事件一起處理。如果你的系統需要兼容IE話,你要確保DOM加載完成。希望本文的內容對大家的學習或者工作能帶來一定的幫助,如果有疑問大家可以留言交流。