日期:2014-05-16 浏览次数:20516 次
if(document.getElementById("checkAll").checked){
$("input[name='jinjian']").attr("checked","checked");
}else{
$("input[name='jinjian']").prop("checked",false).removeAttr("checked");
}
$("input[name='jinjian']").attr("checked",document.getElementById("checkAll").checked);
$("input[name='jinjian']").attr("checked",$(this).attr("checked"));
if($("#checkAll").prop("checked") == true){
$("input[name='jinjian']").prop("checked",true);
}else{
$("input[name='jinjian']").prop("checked",false);
}
<!doctype html>
<html>
<head>
<meta charset="gb2312">
<title>无标题文档</title>
<script type="text/javascript" src="jquery1.7.js"></script>
<script type="text/javascript">
$(document).ready(function(e) {
$("#quanxuan").click(function(e) {
if ($(this).attr("checked")=="checked"){
$("input[name='jinjian']").attr("checked",true)
}
else{
$("input[name='jinjian']").removeAttr("checked")
}
});
});
</script>
</head>
<body>
<table width="400" border="1" align="center" id="table1">
<tr>
<td><input type="checkbox" name="quanxuan" id="quanxuan