admin管理员组文章数量:1344571
How can I programmatically detect if an object is a jQuery object? For example:
// 1. declare some variables
var vars = [1, 'hello', ['bye', 3], $(body), { say: 'hi' }];
// 2. ??? : implement function that tests whether its parameter is a jQuery object
function isjQuery(arg) { /* ??? */ }
// 3. profit
var test = $.map(vars, isjQuery); /* expected [ false, false, false, true, false ] */
How can I programmatically detect if an object is a jQuery object? For example:
// 1. declare some variables
var vars = [1, 'hello', ['bye', 3], $(body), { say: 'hi' }];
// 2. ??? : implement function that tests whether its parameter is a jQuery object
function isjQuery(arg) { /* ??? */ }
// 3. profit
var test = $.map(vars, isjQuery); /* expected [ false, false, false, true, false ] */
Share
Improve this question
asked Feb 25, 2011 at 16:23
isekaijinisekaijin
19.8k19 gold badges87 silver badges154 bronze badges
3 Answers
Reset to default 9The easiest API-documented way is to test for the .jquery
property:
function isjQuery(arg) {
return !!arg.jquery;
}
However, if you want to be sure it's a jQuery object and not some other object with a fake .jquery
property, the other answers suggesting instanceof jQuery
and testing the constructor work too.
(The .jquery
property is formally a string indicating the jQuery version, but the API example uses it to test whether an object is a jQuery object.)
I think you can rely on
if ( vars[i] instanceof jQuery ) {
// do something with this jQuery object
}
but I also found these methods here:
obj && obj.constructor == jQuery
obj && obj.jquery
There are several ways, but the clearest (in my opinion) would be:
function isjQuery(arg) { return arg instanceof jQuery; }
本文标签: javascriptHow to programmatically detect if an object is a jQuery objectStack Overflow
版权声明:本文标题:javascript - How to programmatically detect if an object is a jQuery object? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743761711a2534497.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论