使用 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
});
但它的工作方式与 live 不同 - 添加到文档中匹配选择器的新元素不会被绑定......
谢谢!