服务器之家:专注于服务器技术及软件下载分享
分类导航

node.js|vue.js|jquery|angularjs|React|json|js教程|

服务器之家 - 编程语言 - JavaScript - 使用typeof判断function是否存在于上下文

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

2021-02-18 17:06JavaScript教程网 JavaScript

这篇文章主要介绍了使用typeof判断function是否存在于上下文,在窗口加载时,使用typeof进行判断,需要的朋友可以参考下

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

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<script type="text/javascript">
window.onload = function(){
try{
if(test && typeof(test) == "function"){
test();
}
}catch(e){
alert("方法不存在");
}
}
function test(){
alert("我是test()方法");
}
</script>

延伸 · 阅读

精彩推荐