在窗口加載時,使用typeof判斷function是否存在於上下文
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>