私はon()
模倣するために使用しており、渡したセレクターを参照するlive()
ように適切に参照する方法を一生理解することはできません。$(this)
$(this)
"body"
"select"
$("body").on("change", "select", function(e){
console.log($(this));
});
これを試して
$(e.currentTarget);
e は実際にはイベントのイベント引数であり、それが私が信じたいことです。
イベントのソースにはevent.targetを使用できます。
$("body").on("change", "select", function(e){
console.log($(e.target));
});