Posted in Javascript onJanuary 10, 2015
本文实例讲述了js判断某个方法是否存在的代码。分享给大家供大家参考。
具体代码如下:
<html> <head> <title> js判断某个方法是否存在</title> <meta http-equiv="content-type" content="text/html;charset=utf-8" /> <script type="text/javascript"> window.onload = function(){ try{ if(test && typeof(test) == "function"){ test(); } }catch(e){ alert("方法不存在"); } } function test(){ alert("我是test()方法"); } </script> </head> <body> </body> </html>
希望本文所述对大家的javascript程序设计有所帮助。
js判断某个方法是否存在实例代码
- Author -
shichen2014声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@