遍历标签同时添加点击事件

html

   


js


// 添加翻页绑定事件  给li 绑定点击事件
            $('#page li ').click(function () {
             
                 var n = this.children[0].getAttribute('data-page');
                if (n == undefined || n == "" || n == null) return;
                e.BuildProductList(n, 10);
            })


// 添加翻页绑定事件 给a绑定点击事件
            $('#page li a').click(function () {
              
               var n =this.getAttribute('data-page');
                if (n == undefined || n == "" || n == null) return;
                e.BuildProductList(n, 10);
            })



你可能感兴趣的:(Jquery)