jquery on and bind different
参考:http://stackoverflow.com/questions/9113783/whats-the-difference-between-jquery-bind-and-jquery-on
on是集合了live,delegate,bind 三个方法,只用一个更简单,notes:live直接绑定在document 上,每次事件发生都会检测选择器,会有性能问题,已经去掉了。
参考:http://stackoverflow.com/questions/9113783/whats-the-difference-between-jquery-bind-and-jquery-on
on是集合了live,delegate,bind 三个方法,只用一个更简单,notes:live直接绑定在document 上,每次事件发生都会检测选择器,会有性能问题,已经去掉了。