如何知道一个对象是否是jQuery对象
我创建了一个函数,它告诉一个变量是否保存jQuery对象,或者是否有任何替代。 以下是我的代码
/*Is there any substitute of this function*/
function iSJqueryObj(elm)
{
return elm && jQuery.isFunction(elm.html);
}
http://jsfiddle.net/kE7Lp/3/
使用instanceof
:
console.log(elm instanceof jQuery);
要么:
console.log(elm instanceof $);
演示:http://jsfiddle.net/karim79/8jUKX/
尝试一下实例
obj instanceof jQuery
链接地址: http://www.djcxy.com/p/83933.html