何时使用 $(this) 和 e.target?
我对 $(this) 并不感到困惑,但 e.target 对我来说是令人困惑的,因为它可以执行与 $(this) 相同的事情。(或者我错了?)
$(document).on('click',"div", function(){
$(this).css('color', 'red');
}
});
对比
$(document).on('click',"div", function(e){
$(e.target).css('color', 'red');
}
});