jQuery を使用して、次のように古い .live() イベント バインディングを .on() に置き換えています。
$(document).on(event, selector, function () {
console.log($(this)); //$(this) refers to the $(document) element, not the selector
});
私がやりたいことは、このイベントが適用されている要素にアクセスすることです。何か案は?
これは機能します:
$(selector).on(event, function () {
console.log($(this)); //$(this) refers to the selector
});
ただし、ライブと同じようには機能しません。セレクターに一致するドキュメントに追加された新しい要素はバインドされません...
ありがとう!