欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

比較簡(jiǎn)單的異步加載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://www.dbjr.com.cn/images/test.js,'cb');
</script>

相關(guān)文章

最新評(píng)論