淺談js文件援用方法及其同步履行與異步履行。本站提示廣大學習愛好者:(淺談js文件援用方法及其同步履行與異步履行)文章只能為提供參考,不一定能成為您想要的結果。以下是淺談js文件援用方法及其同步履行與異步履行正文
任何故appendChild(scriptNode) 的方法引入的js文件都是異步履行的 (scriptNode 須要拔出document中,只創立節點和設置 src 是不會加載 js 文件的,這跟 img 的與加載分歧 )
html文件中的<script>標簽中的代碼或src援用的js文件中的代碼是同步加載和履行的
html文件中的<script>標簽中的代碼應用document.write()方法引入的js文件是異步履行的
html文件中的<script>標簽src屬性所援用的js文件的代碼內再應用document.write()方法引入的js文件是同步履行的
1、
<script> //同步加載履行的代碼 </script>
2、
<script src="xx.js"></script> //同步加載履行xx.js中的代碼
3、
<script> document.write('<script src="xx.js"><\/script>'); //異步加載履行xx.js中的代碼 </script>
4、
<script src="xx.js"></script>
xx.js中有上面代碼:
document.write('<script src="11.js"><\/script>'); document.write('<script src="22.js"><\/script>');
則xx.js和11.js、22.js 都是同步加載和履行的。
假如 xx.js 以拔出方法異步加載,則 11.js 和 22.js 依然是同步加載的(異步中的同步,即,這2個文件的加載是分前後順序的)
測試:在11中 alert, 22中 document.write() ,可以看到 22中寫入語句被壅塞
5、
上面這類方法,xx.js會在appendChild履行以後異步加載履行
var script = document.createElement("script"); script.setAttribute("src","xx.js"); documenrt.getElementsByTagName("head")[0].appendChild(script);
一個加載 js 文件的 函數:
var loadJS = function(url,callback){ var head = document.getElementsByTagName('head')[0], script = document.createElement('script'); script.src = url; script.type = "text/javascript"; head.appendChild( script); script.onload = script.onreadystatechange = function(){ //script 標簽,IE 下有 onreadystatechange 事宜, w3c 尺度有 onload 事宜 //這些 readyState 是針對IE8及以下的,W3C 尺度由於script 標簽沒有這個 onreadystatechange 所以也不會有 this.readyState , // 好在文件加載不勝利 onload 不會履行,(!this.readyState) 是針對 W3C尺度的 if ((!this.readyState) || this.readyState == "complete" || this.readyState == "loaded" ){ callback(); } else { alert("can not load the js file") } } }
關於第4點的測試(個中拔出 alert 很輕易看到加載時壅塞的)
tryjs.html
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <script src="tryjs.js" onload="if(!document.all){console.log('outer js callback, not IE');}" onreadystatechange="console.log('outer js callback ',this.readyState,' IE');"></script> <body> </body> </html>
tryjs.js
console.log('write begin'); document.write('<script src="try.1.js" onreadystatechange="console.log(\'file 1 callback \',this.readyState,\' IE\');" onload="if(!document.all){console.log(\'file 1 callback,NOT IE \');}"><\/script>'); document.write('<script src="try.2.js" onreadystatechange="console.log(\'file 2 callback \',this.readyState,\' IE\');" onload="if(!document.all){console.log(\'file 2 callback,NOT IE \');}"><\/script>'); console.log('write finished');
try.1.js
console.log('loadjs 1 begin'); console.log('loadjs 1 finished');
try.2.js
console.log('loadjs 2 begin'); console.log('loadjs 2 finished');
測試成果(file 2 和 file 1 的 callback complete 在IE7\8\9順序不肯定)
IE 7:
日記: outer js callback loading IE
日記: outer js callback loaded IE
日記: write begin
日記: write finished
日記: outer js callback complete IE
日記: file 1 callback loading IE
日記: file 2 callback loading IE
日記: loadjs 1 begin
日記: loadjs 1 finished
日記: loadjs 2 begin
日記: loadjs 2 finished
日記: file 2 callback complete IE
日記: file 1 callback complete IE
IE8:
日記: outer js callback loading IE
日記: outer js callback loaded IE
日記: write begin
日記: write finished
日記: outer js callback complete IE
日記: file 1 callback loading IE
日記: file 2 callback loading IE
日記: loadjs 1 begin
日記: loadjs 1 finished
日記: loadjs 2 begin
日記: loadjs 2 finished
日記: file 2 callback complete IE
日記: file 1 callback complete IE
IE9:
日記: write begin
日記: write finished
日記: outer js callback complete IE
日記: file 1 callback loading IE
日記: file 2 callback loading IE
日記: loadjs 1 begin
日記: loadjs 1 finished
日記: loadjs 2 begin
日記: loadjs 2 finished
日記: file 1 callback complete IE
日記: file 2 callback complete IE
FIREFOX:
write begin
write finished
outer js callback, not IE
loadjs 1 begin
loadjs 1 finished
file 1 callback,NOT IE
loadjs 2 begin
loadjs 2 finished
file 2 callback,NOT IE
CHROME:
write begin
write finished
outer js callback, not IE
loadjs 1 begin
loadjs 1 finished
file 1 callback,NOT IE
loadjs 2 begin
loadjs 2 finished
file 2 callback,NOT IE
以上就是小編為年夜家帶來的淺談js文件援用方法及其同步履行與異步履行的全體內容了,願望對年夜家有所贊助,多多支撐~