下面电脑高手结合实例讲述了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新闻热点
疑难解答