首页 > 网站 > 建站经验 > 正文

jquery获取多个checkbox的值-异步提交给php的方法代码

2019-11-02 15:11:43
字体:
来源:转载
供稿:网友

         下面电脑高手结合实例讲述了jquery获取多个checkbox的值异步提交给php的方法。分享给大家供大家参考。具体实现方法如下:

          html代码:

? 1 2 3 4 5 6 7 8 <tr> <td><input type="checkbox" name="uid" value="<?=$item['mtaccount_id']?>"></td> <td><?=$item['mtaccount_id']?></td> <td><?=$item['account_id']?></td> <td><?=$item['account_name']?></td> <td><?=$item['server']?></td> <td><?=$item['platform']?></td> </tr>

         我的是html里的数据是从数据库读出来的,在此可以理解为下面代码

? 1 2 3 4 <li><input type="checkbox" name="uid" value="1" />用户1</li> <li><input type="checkbox" name="uid" value="2" />用户2</li> <li><input type="checkbox" name="uid" value="3" />用户3</li> <li><input type="checkbox" name="uid" value="4" />用户4</li>

          jquery代码:

? 1 2 3 4 5
1905电影网[www.aikan.tv/special/1905dianyingwang/]
6 7 8 9 10 11 12 13 14 15 16 17 18 var mt4Ids = []; $('input[name=uid]').each(function() { if(this.checked) { mt4Ids.push($(this).val()); } }); data = { mt4Ids : JSON.stringify(mt4Ids) }; var pUrl = "/a/manageUser.html"; $.post(pUrl, data, function(data){ if(data.state == 1){ alert(data.msg); location.href = "/h/permission.html"; }else{ alert("操作失败"); } }, 'json');
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表