當我們在用jquery的each做循環遍歷的時候常常會使用到this,而有時候我們不知道this所指的到底是什麼,因為要使用jquery的方法 前提此物件必須是jquery物件。
另外要判斷一個javascript的物件是什麼類型,可以使用typeof,
但是typeof只能判斷出js的基礎物件(string,boolean,number,object)
判斷一個對像是否為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 })