Maison > Article > interface Web > jquery implémente tout sélectionner et la sélection unique inverse
Cette fois, je vais vous présenter jquery pour implémenter la sélection de tout et inverser la sélection unique. Quelles sont les précautions pour implémenter jquery pour implémenter la sélection de tout et inverser la sélection unique. Ce qui suit est un cas pratique.
<linkrel="stylesheet"href="http://wiki.jikexueyuan.com/project/bootstrap4/dist/css/bootstrap.min.css"rel="external nofollow"> <scriptsrc="https://cdn.static.runoob.com/libs/jquery/1.10.2/jquery.min.js"> </script> <tableclass="table table-bordered "> <theadclass="tab_head"> <tr> <td> <inputtype="checkbox"onclick="selectAll()"></td> <th>角色名称</th> <th>角色说明</th> <th>所属系统</th> </tr> </thead> <tbody> <tr> <td> <inputtype="checkbox"></td> <td>系统管理员</td> <td>管理员角色</td> <td>武进公安平台</td> </tr> <tr> <td> <inputtype="checkbox"></td> <td>系统管理员</td> <td>管理员角色</td> <td>武进公安平台</td> </tr> <tr> <td> <inputtype="checkbox"></td> <td>系统管理员</td> <td>管理员角色</td> <td>武进公安平台</td> </tr> </tbody> </table> <script> function selectAll(){ $("input[type='checkbox']").each( function() { if($(this).prop("checked")==true) { $("input[type='checkbox']").prop('checked', true); return; } else { $("input[type='checkbox']").prop('checked', false); return; } }); } </script>
Je pense que vous maîtrisez la méthode après avoir lu le cas dans cet article. Pour des informations plus intéressantes, veuillez prêter attention aux autres articles connexes sur le site Web chinois de php. !
Lecture recommandée :
Le plug-in jQuery FusionCharts dessine un diagramme circulaire
jquery implémente une recherche non dynamique
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!