方法回調:callback方法回調是指當某方法執行完成後,去自動執行指定的另一方法的過程.下面舉兩個代表性的例子,說說JS世界裡的方法回調.
一 對JS腳本文件動態加載,當加載完成後,去回調一個函數
復制代碼 代碼如下:
<script>
/* js動態加載腳本庫方法 */
function include_js(file) {
var _doc = document.getElementsByTagName('head')[0];
var js = document.createElement('script');
js.setAttribute('type', 'text/javascript');
js.setAttribute('src', file);
_doc.appendChild(js);
if (!/*@cc_on!@*/0) { //if not IE
//Firefox2、Firefox3、Safari3.1+、Opera9.6+ support js.onload
js.onload = function () {
// …你的代碼邏輯
}
} else { //IE6、IE7 support js.onreadystatechange
js.onreadystatechange = function () {
if (js.readyState == 'loaded' || js.readyState == 'complete') {
// …你的代碼邏輯 //加載Jquery腳本庫,完成後,執行jquery裡的方法
$("#div1").html("ok");
}
}
}
return false;
} //execution function
include_js('http://img1.c2cedu.com/Scripts/jquery/jquery-1.4.2.min.js');
</script>
二 動態加載IFRAME框架頁,當加載完成後,去回調一個函數
復制代碼 代碼如下:
<script>
var iframe = document.createElement("iframe");
iframe.src = http://www.jb51.net;
if (iframe.attachEvent) {
iframe.attachEvent("onload", function () { // …你的代碼邏輯 }); } else {
iframe.onload = function () {
// …你的代碼邏輯
};
}
document.body.appendChild(iframe);
</script>