怎样判断一个jquery对象是否为空jquery对象

2024年11月19日 16:47
有1个网友回答
网友(1):

判断一个对象是否为jquery对象可以用 obj instanceof jQuery
例如:

var obj = $("div");
if(obj instanceof jQuery){
alert("这是一个搭伏jQuery对象");
}else{
alert("这知备携是一个其它对象")
}

$(".otherWeek"滚侍).each(function(){
console.info(this instanceof jQuery); //false
console.info($(this) instanceof jQuery); //true