Posted in Javascript onJuly 04, 2011
方法回调: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 = https://3water.com; if (iframe.attachEvent) { iframe.attachEvent("onload", function () { // …你的代码逻辑 }); } else { iframe.onload = function () { // …你的代码逻辑 }; } document.body.appendChild(iframe); </script>
JS对外部文件的加载及对IFRMAME的加载的实现,当加载完成后,指定指向方法(方法回调)
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@