最新文章專題視頻專題問答1問答10問答100問答1000問答2000關鍵字專題1關鍵字專題50關鍵字專題500關鍵字專題1500TAG最新視頻文章視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關鍵字專題關鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
當前位置: 首頁 - 科技 - 知識百科 - 正文

基于js實現(xiàn)checkbox批量選中操作

來源:懂視網(wǎng) 責編:小OO 時間:2020-11-27 20:29:10
文檔

基于js實現(xiàn)checkbox批量選中操作

<。html >。<。head>。<。title>。checkbox全選<。/title>。<。meta http-equiv="。Content-Type"。content="。text/html。charset=UTF-8"。/>。<。style type="。text/css"。>。<。/style>。<。script type="。text/javascript"。>。<。/script>。<。/head>。<。body>。<。table style="。border:1px solid red。)。
推薦度:
導讀<。html >。<。head>。<。title>。checkbox全選<。/title>。<。meta http-equiv="。Content-Type"。content="。text/html。charset=UTF-8"。/>。<。style type="。text/css"。>。<。/style>。<。script type="。text/javascript"。>。<。/script>。<。/head>。<。body>。<。table style="。border:1px solid red。)。

本文實例為大家分享了js實現(xiàn)checkbox批量選中的具體代碼,供大家參考,具體內容如下

<html >
 <head>
 <title>checkbox全選</title>
 <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
 <style type="text/css"></style>
 <script type="text/javascript"></script>
 </head>
 <body>
 <table style="border:1px solid red;"> 
 <tr>
 <th style="background-color:#f7f7f7;width:8%;text-align:center;" class="lf">
 <input name='chkAll' type='checkbox' id='chkAll' onClick="checkAll(this, 'id[]')" value='checkbox' /> 全選
 </th>
 <th style="background-color:#f7f7f7;width:8%;" class="lf">商品編號</th>
 <th style="background-color:#f7f7f7;width:13%;" class="lf">名稱</th>
 <th style="background-color:#f7f7f7;width:18%;" class="lf">標題</th> 
 <th style="background-color:#f7f7f7;width:8%;" class="lf">品牌</th>
 <th style="background-color:#f7f7f7;width:8%;" class="lf">組別</th> 
 </tr>
 <tr>
 <td class="lf" style="text-align:center;">
 <input name='id[]' type='checkbox' value='{id}' onClick="checkItem(this, 'chkAll')">
 </td>
 <td class="lf">001</td>
 <td class="lf">002</td>
 <td class="lf">003</td>
 <td class="lf">004</td>
 <td class="lf">005</td> 
 </tr> 
 <tr>
 <td class="lf" style="text-align:center;">
 <input name='id[]' type='checkbox' value='{id}' onClick="checkItem(this, 'chkAll')">
 </td>
 <td class="lf">001</td>
 <td class="lf">002</td>
 <td class="lf">003</td>
 <td class="lf">004</td>
 <td class="lf">005</td> 
 </tr> 
 <tr height="45">
 <td colspan="10" style="text-align:left;padding-left:40px;">
 <input type="button" id="btn_show" value="批量展示" style="width:100px;margin-left:20px;">
 </td> 
 </tr>
 </table>
<script type="text/javascript" src="jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="checkbox.js"></script>
<script type="text/javascript">
 /*var ids = [];
 $('#btn_show').click(function(){
 btnCheck('展示');
 data = {
 "ids":ids
 };
 $.ajax({
 type:"POST",
 url:"{:U('Mall/GoodsShow')}",
 data:data,
 //dataType:"json",
 success:function(msg){
 if(msg == 00){
 alert("批量展示成功");
 window.location.href='/index.php/Admin/Mall/MallList';
 }else{
 alert("批量展示失敗,請重新編輯");
 }
 },
 error:function(){
 alert("批量編輯失敗,請重新編輯");
 }
 }); 
 });
 function btnCheck(info){
 var obj = $("input[name='id[]']:checked").each(function(){
 ids.push($(this).val());
 });
 if (ids == false) {
 alert("請選定要"+info+"的商品");
 return false;
 }else {
 return ids; 
 }
 }
*/
</script>
 </body>
</html>

聲明:本網(wǎng)頁內容旨在傳播知識,若有侵權等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

基于js實現(xiàn)checkbox批量選中操作

<。html >。<。head>。<。title>。checkbox全選<。/title>。<。meta http-equiv="。Content-Type"。content="。text/html。charset=UTF-8"。/>。<。style type="。text/css"。>。<。/style>。<。script type="。text/javascript"。>。<。/script>。<。/head>。<。body>。<。table style="。border:1px solid red。)。
推薦度:
  • 熱門焦點

最新推薦

猜你喜歡

熱門推薦

專題
Top