所有内容都在标题中:
我正在将一些html内容添加到html页面以响应ajax调用。
我的'Click'
代表不起作用,但'mouseenter'
代表工作正常。为什么'点击'不起作用?
$(document).ready(function () {
$(this).on('mouseenter', '.fb-usr-account a', function (e) {
console.log('enter');
});
$(this).on('click', '.fb-usr-account a', function (e) {
console.log('clicked');
});
});
更新:
没有stopPropagation
或preventDefault
任何地方