两者之间的写法在任何项目是否会不同的区别?
$('#whatever').on('click', function() { /* your code here */});
and
$('#whatever').click(function() { /* your code here */});
相关分类