JQuery Delegate不能与'click'一起使用

时间:2015-12-21 14:50:21

标签: jquery

所有内容都在标题中:

我正在将一些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');
    });
});

更新: 没有stopPropagationpreventDefault任何地方

0 个答案:

没有答案