下面就介绍如何用一句话搞定全选功能
<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="UTF-8">
</head>
<body>
<div id="box">
<input type="checkbox" onclick="checkAll(this)">全选<br><br>
<input type="checkbox"><br>
<input type="checkbox"><br>
<input type="checkbox"><br>
<input type="checkbox"><br>
<input type="checkbox"><br>
<input type="checkbox"><br>
<input type="checkbox"><br>
<input type="checkbox"><br>
<input type="checkbox"><br>
</div>
<script type="text/javascript" src="jquery-1.10.1.min.js" ></script>
<script>
function checkAll(obj){
$("#box input[type='checkbox']").prop('checked', $(obj).prop('checked'));
}
</script>
</body>
</html>
效果图:
一键全选功能实现
本文介绍了一种简单的方法来实现网页上的一键全选功能。通过一个全选按钮控制一组复选框的状态,利用JavaScript代码使得点击全选按钮时能够同步更新所有子复选框的选择状态。
289

被折叠的 条评论
为什么被折叠?



