亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

比較簡單的異步加載JS文件的代碼

 更新時(shí)間:2009年07月18日 02:34:31   作者:  
異步加載JS文件的實(shí)現(xiàn)函數(shù)代碼。
復(fù)制代碼 代碼如下:

<script>
function getJsFile(url, callBack){
var XH = window.XMLHttpRequest ? new XMLHttpRequest : new ActiveXObject('Msxml2.XMLHTTP');
XH.open('get',url,true);
XH.onreadystatechange = function(){
if(XH.readyState == 4 && XH.status == 200){
if(window.execScript) window.execScript(XH.responseText);
else eval.call(window, XH.responseText);
eval(callBack)();
}
}
XH.send('');
}
</script>

復(fù)制代碼 代碼如下:

//test
<script>
function cb(){
alert(1);
abc(); //這個(gè)是在js9.js 中的
}
getJsFile('http://chabaoo.cn/images/test.js,'cb');
</script>

相關(guān)文章

最新評(píng)論