DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> 關於JavaScript >> 僅IE9/10同時支持script元素的onload和onreadystatechange事件分析
僅IE9/10同時支持script元素的onload和onreadystatechange事件分析
編輯:關於JavaScript     
如下
復制代碼 代碼如下:
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>IE9/10同時支持script元素的onload和onreadystatechange事件</title>
<script src="http://code.jquery.com/jquery.min.js" onload="alert(1)" onreadystatechange="alert(2)"></script>
</head>
<body>
</body>
</html>

結果:
IE6/7/8 : 彈出2
IE9/10 : 彈出2,1
Firefox/Safari/Chrome/Opera : 彈出1
測試結果可以看出,IE9後已經開始支持script的onload事件了。一直以來我們判斷js文件是否已經加載完成就是用以上的兩個事件。很久以前就知道IE中使用onreadystatechange事件,事件handler中使用readyState的值判斷是否加載完成。其它浏覽器使用onload事件。
復制代碼 代碼如下:
if(isIE){
script.onreadystatechange = function(){
if(this.readyState == 'loaded' || this.readyState == 'complete'){
callback();
}
}
}else{
script.onload = function(){
callback();
}
}

這種寫法現在也沒有問題。但如下寫法可能會讓的回調在IE9/10中執行兩次
復制代碼 代碼如下:
script.onload = script.onreadystatechange = function(){
if(!this.readyState || this.readyState == "loaded" || this.readyState == "complete"){
callback();
}
}

這種寫法的取巧之處在於onload和onreadystatechage都用同一個函數,Firefox/Safari/Chrome/Opera中不支持onreadystatechage事件,也沒有readyState屬性,所以 !this.readyState 是針對這些浏覽器。readyState是針對IE浏覽器,載入完畢的情況是loaded,緩存的情況下可能會出現readyState為complete。所以兩個不能少。但由於IE9/10也已經支持onload事件了,會造成callback執行2次。

相關:

http://www.w3.org/TR/html401/interact/scripts.html#h-18.2.1 

http://www.w3.org/TR/html5/scripting-1.html#script

https://developer.mozilla.org/En/HTML/Element/Script 

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved