jquery獲取多個checkbox的值異步提交給php的方法
更新時間:2015年06月24日 11:06:06 作者:Caoxt
這篇文章主要介紹了jquery獲取多個checkbox的值異步提交給php的方法,涉及jQuery操作頁面元素進(jìn)行異步傳輸?shù)南嚓P(guān)技巧,需要的朋友可以參考下
本文實例講述了jquery獲取多個checkbox的值異步提交給php的方法。分享給大家供大家參考。具體實現(xiàn)方法如下:
html代碼:
<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里的數(shù)據(jù)是從數(shù)據(jù)庫讀出來的,在此可以理解為下面代碼
<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代碼:
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');
PHP代碼
$mt4Ids = !empty($_POST['mt4Ids']) ? $_POST['mt4Ids'] : false; $stripMt4Ids = preg_replace('/[\"\[\]]/', '', $mt4Ids); $mt4IdsToArr = explode(',', $stripMt4Ids); foreach($mt4IdsToArr as $uid){ permission_relation::add($uid, $gid); } $data = array( 'state' => 1, 'msg' => '操作成功' ); echo json_encode($data); return false; // $gid 可忽略
希望本文所述對大家的php程序設(shè)計有所幫助。
您可能感興趣的文章:
- jQuery異步提交表單的兩種方式
- jquery獲取多個checkbox的值異步提交給php
- Jquery異步提交表單代碼分享
- Jquery.Form 異步提交表單的簡單實例
- jquery ajaxSubmit 異步提交的簡單實現(xiàn)
- jquery下異步提交表單 異步跨域提交表單
- jquery實現(xiàn)簡潔文件上傳表單樣式
- 分享20多個很棒的jQuery 文件上傳插件或教程
- jQuery Ajax文件上傳(php)
- Jquery結(jié)合HTML5實現(xiàn)文件上傳
- js jquery分別實現(xiàn)動態(tài)的文件上傳操作按鈕的添加和刪除
- JQuery異步提交表單與文件上傳功能示例
相關(guān)文章
php實現(xiàn)數(shù)字轉(zhuǎn)億萬單位的示例代碼
這篇文章主要為大家詳細(xì)介紹了php如何實現(xiàn)數(shù)字轉(zhuǎn)億萬單位,文中的示例代碼講解詳細(xì),具有一定的借鑒價值,感興趣的小伙伴可以跟隨小編一起學(xué)習(xí)一下2023-11-11