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

通常使用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方法失效)