美文网首页Front End
[jQuery] $.fn.delegate方法失效

[jQuery] $.fn.delegate方法失效

作者: 何幻 | 来源:发表于2016-03-03 07:17 被阅读18次

    通常使用delegate的方法是,

    $(selector).delegate('>table>tbody>tr>td','click',function(){...});
    

    但是在jQuery 1.6.4中,却没有生效。

    原因:
    jQuery 1.6.4的delegate不支持以“>”开头的选择器。

    解决方案:
    去掉“>”即可,

    $(selector).delegate('table>tbody>tr>td','click',function(){...});
    

    相关文章

      网友评论

        本文标题:[jQuery] $.fn.delegate方法失效

        本文链接:https://www.haomeiwen.com/subject/haunkttx.html