在窗口加载时,使用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> |
时间: 2024-12-02 06:23:27