jquery on绑定事件叠加解决方法 代码如下 <pre> $('.maoqiu').each(function () { var is_bind = $(this).attr('is_bind'); if (is_bind != 1) { $(this).attr('is_bind', 1); $(this).on('touchend', function () { var that = $(this); that.addClass('fadeOutRight animated'); mc
1. jquery加载事件实现 ① $(document).ready(function处理); ② $().ready(function处理); ③ $(function处理); 对第一种加载的封装而已 在同一个请求里边,jquery的可以设置多个,而传统方式只能设置一个 传统方式加载事件是给onload事件属性赋值,多次赋值,后者会覆盖前者. jquery方式加载事件是把每个加载事件都存入一个数组里边,成为数组的元素,执行的时候就遍历该数组执行每个元素即可,因此其可以设置多个加载事件. 传