JS中方法判断存在
Posted Danlis
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS中方法判断存在相关的知识,希望对你有一定的参考价值。
function test(){ alert("test"); } if(typeof test!=‘undefined‘) {alert(1) test(); } else {alert(2)} if(typeof testStart!=‘undefined‘){ alert(3) } else{ alert(4) testStart(); }
以上是关于JS中方法判断存在的主要内容,如果未能解决你的问题,请参考以下文章