1、typeof 运算符:返回一个用来表示表达式的数据类型的字符串。("number", "string", "boolean", "object", "function", "undefined")
1 if('function'==typeof $('#id').thefunction) 2 { 3 alert('是个方法'); 4 } 5 else 6 { 7 alert('不是方法'); 8 }
2、in 运算符
3、hasOwnProperty() 方法
1、typeof 运算符:返回一个用来表示表达式的数据类型的字符串。("number", "string", "boolean", "object", "function", "undefined")
1 if('function'==typeof $('#id').thefunction) 2 { 3 alert('是个方法'); 4 } 5 else 6 { 7 alert('不是方法'); 8 }
2、in 运算符
3、hasOwnProperty() 方法