日期:2014-05-16 浏览次数:20454 次
<html>
<head>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.4.4.js"></script>
<script>
function all(allbox){
alert($("#al").attr("checked"));
$("input[name='upcom']").attr("checked",allbox.checked);
}
</script>
</head>
<body>
<input type="checkbox" name="all" onclick="all(this)" id="al">全选<br>
<input type="checkbox" name="upcom" value="大家">大家
<input type="checkbox" name="upcom" value="几款">几款
<input type="checkbox" name="upcom" value="张之洞">张之洞
</body>
<html>
<html>
<head>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.10.2.js"></script>
<script>
function all(allbox){
alert($("#al").attr("checked"));
$("input[name='upcom']").attr("checked",allbox.checked);
}
</script>
</head>
<body>
<input type="checkbox" name="all" onclick="all(this)" id="al">全选<br>
<input type="checkbox" name="upcom" value="大家">大家
<input type="checkbox" name="upcom" value="几款">几款
<input type="checkbox" name="upcom" value="张之洞">张之洞
</body>
<html>