在窗口加载时,使用typeof判断function是否存在于上下文
view sourceprint?
01 <script type="text/javascript">
02 window.onload = function(){
03 try{
04 if(test && typeof(test) == "function"){
05 test();
06 }
07 }catch(e){
08 alert("方法不存在");
09 }
10 }
11 function test(){
12 alert("我是test()方法");
13 }
14 </script>
更多信息请查看IT技术专栏