我想要做什麼:比較 'e.target' 到jQuery對象
(clickedObject === someDiv) //returns true or false
我試了一下
($(e.target) === $('.selector')); //returns a false negative.
我的解決方法
($(e.target).attr('class') === $('.selector').attr('class')); //works as intended, not so clean though.
什麼是正確的方式比較我點擊的對象在DOM中的對象?
我喜歡這個答案,因爲它描述了爲什麼我的做法沒有奏效。 jQuery返回一組項目。 – dubbelj 2011-12-22 15:57:22
@dubbelj - 酷 - 很高興它幫助:) – 2011-12-22 15:58:16