$('#t').on('click', 'td', function () {
$(this).css('color', 'red').css('background', 'yellow'); });与$('#t td').click( function () { $(this).css('color', 'red').css('background', 'yellow'); }); 的区别?哪个性能更好?
添加回答
举报
0/150
提交
取消