jq获取复选框选中的值

     //jquery获取复选框选中的值 
      var chk_value =[];//定义一个数组 
      $('input[name="interest"]:checked').each(function(){//遍历每一个名字为interest的复选框,其中选中的执行函数 
      chk_value.push($(this).val());//将选中的值添加到数组chk_value中 
      });
posted @ 2017-03-06 11:14  azcqwezxc  阅读(84)  评论(0编辑  收藏  举报