判断一个对象是否为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