6
在下面的代碼中,調用$(this)
時,jQuery是否重新查詢DOM,就好像選擇器已經傳遞給它(使用對象的某些屬性作爲選擇器),還是jQuery保留了以前返回的對象?
$('.someButton').on('click', function() {
$(this).remove(); // Is this another lookup, or just a wrapper for the previously returned object?
});
感謝您回答參考來源。這正是我所期待的。 – monners
爲了促進這個答案,我同意,這裏是基於性能的證明,表明沒有使用'$(this)'重新查找'http://jsperf.com/this-slowing-us-down – Deryck