html>
<html>
<head>
<meta charset&#61;"utf-8">
<title>无标题文档title>
<script>
window.onload &#61; function(){
var aInput &#61; document.getElementsByTagName(&#39;input&#39;);
var count &#61; 0;
aInput[0].onclick &#61; function(){
if(this.checked &#61;&#61; true){
for(var i &#61; 1; i <aInput.length; i&#43;&#43;){
aInput[i].checked &#61; true;
}
count &#61; aInput.length - 1;
document.title &#61; count;
}else{
for(var i &#61; 1; i <aInput.length; i&#43;&#43;){
aInput[i].checked &#61; false;
}
count &#61; 0;
document.title &#61; count;
}
}
for(var i &#61; 1; i <aInput.length; i&#43;&#43;){
aInput[i].onclick &#61; function(){
if(this.checked &#61;&#61; true){
count&#43;&#43;;
}else{
count--;
}
if(count &#61;&#61; aInput.length -1){
aInput[0].checked &#61; true;
}else{
aInput[0].checked &#61; false;
}
document.title &#61; count;
}
}
}
script>
head>
<body>
<input type&#61;"checkbox" />
<hr/>
<input type&#61;"checkbox" />
<input type&#61;"checkbox" />
<input type&#61;"checkbox" />
<input type&#61;"checkbox" />
<input type&#61;"checkbox" />
body>
html>