首页 > 技术文章 > jquery1.11做的改变

lechie 2014-07-06 11:43 原文

$('#btn-checkall').on('click', function(){});

//替换为

$('#btn-checkall-parent-static-node').on('click', '#btn-checkall', function(){});

 

$(this).attr('checked');

//替换为

$(this).prop('checked');

推荐阅读