使用typeof判断function是否存在于上下文

Helen ·
更新时间:2024-11-14
· 881 次阅读

在窗口加载时,使用typeof判断function是否存在于上下文

<script type="text/javascript"> window.onload = function(){ try{ if(test && typeof(test) == "function"){ test(); } }catch(e){ alert("方法不存在"); } } function test(){ alert("我是test()方法"); } </script>



typeof 上下文

需要 登录 后方可回复, 如果你还没有账号请 注册新账号