Heim > Web-Frontend > js-Tutorial > Hauptteil

Implementieren Sie den Kontrollkästchen-Batch-Auswahlvorgang basierend auf js

高洛峰
Freigeben: 2016-12-05 16:37:24
Original
1194 Leute haben es durchsucht

Das Beispiel in diesem Artikel enthält den spezifischen Code für die Implementierung der Kontrollkästchen-Stapelauswahl in js als Referenz. Der spezifische Inhalt lautet wie folgt:

<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=&#39;chkAll&#39; type=&#39;checkbox&#39; id=&#39;chkAll&#39; onClick="checkAll(this, &#39;id[]&#39;)" value=&#39;checkbox&#39; /> 全选
  </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=&#39;id[]&#39; type=&#39;checkbox&#39; value=&#39;{id}&#39; onClick="checkItem(this, &#39;chkAll&#39;)">
  </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=&#39;id[]&#39; type=&#39;checkbox&#39; value=&#39;{id}&#39; onClick="checkItem(this, &#39;chkAll&#39;)">
  </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 = [];
 $(&#39;#btn_show&#39;).click(function(){
 btnCheck(&#39;展示&#39;);
 data = {
 "ids":ids
 };
 $.ajax({
 type:"POST",
 url:"{:U(&#39;Mall/GoodsShow&#39;)}",
 data:data,
 //dataType:"json",
 success:function(msg){
 if(msg == 00){
  alert("批量展示成功");
  window.location.href=&#39;/index.php/Admin/Mall/MallList&#39;;
 }else{
  alert("批量展示失败,请重新编辑");
 }
 },
 error:function(){
  alert("批量编辑失败,请重新编辑");
 }
 });  
 });
 function btnCheck(info){
 var obj = $("input[name=&#39;id[]&#39;]:checked").each(function(){
 ids.push($(this).val());
 });
 if (ids == false) {
 alert("请选定要"+info+"的商品");
 return false;
 }else {
 return ids; 
 }
 }
*/
</script>
 </body>
</html>
Nach dem Login kopieren


Verwandte Etiketten:
js
Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage