判斷一個物件是否為jquery物件的方法:可以用obj instanceof jQuery方法判斷,程式碼為【if (obj instanceof jQuery){alert("這是一個jQuery物件");}】。
本教學操作環境:windows7系統、jquery3.2.1版,此方法適用於所有品牌電腦。
判斷一個物件是否為jquery物件的方法:
當我們在用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("这是一个其它对象") } obj.each(function() { console.log(this instanceof jQuery); //false console.log($(this) instanceof jQuery); //true })
其他:
$(this)[0]
$(this).get(0)
#$(this).toArray()[0];
以上3種寫法等價
相關免費學習推薦:JavaScript(影片)
以上是如何判斷一個物件是否為jquery的對象的詳細內容。更多資訊請關注PHP中文網其他相關文章!