Home > Article > Web Front-end > How to use jquery to select all and delete
How to use jquery to select all and delete: first create an html code sample file; then modify the jquery code; finally pass "$(".seleAll").on("click", function(){. ..}" method to achieve the select-all-delete function.
The operating environment of this tutorial: windows7 system, jquery1.10.0 version, Dell G3 computer.
Recommended: "jquery video tutorial"
Use jquery to implement the select-all-delete function
html code
<div class="box"> <ul> <li><input type="checkbox" /> 少小离家胖了回</li> <li><input type="checkbox" /> 乡音无改肉成堆</li> <li><input type="checkbox" /> 儿童相见不相识</li> <li><input type="checkbox" /> 笑问胖子你是谁</li> </ul> <div> <input type="button" class="seleAll" value="全选" /> <input type="button" class="reverse" value="反选" /> <input type="button" class="op" value="全不选" /> <input type="button" class="del" value="删除" /> </div> </div>
jquery code
<script src="https://cdn.staticfile.org/jquery/1.10.2/jquery.min.js"></script> <script type="text/javascript"> //全选 $(".seleAll").on("click", function() { var oin = $("input[type='checkbox']") oin.each(function() { $(this).prop("checked", true) }) }) //全不选 $(".op").on("click", function() { var oin = $("input[type='checkbox']") oin.each(function() { $(this).prop("checked", false) }) }) // 反选 $(".reverse").on("click", function() { // 获取节点 var oin = $("input[type='checkbox']") oin.each(function() { this.checked = !this.checked }) }) // 批量删除 $(".del").on("click", function() { var sele = $(":checkbox:checked") if(sele.length > 0) { sele.each(function() { $(this).parent().remove() }) } else { alert("至少选一个数据") } }) </script>
Running effect:
The above is the detailed content of How to use jquery to select all and delete. For more information, please follow other related articles on the PHP Chinese website!