废话不多说了,具体代码如下所示:
< >
function selectAll(){
var checklist = document.getElementsByName ("selected");//获取所有name值为selected的标签
if(document.getElementById("controlAll").checked){//判断当id为controlAll的标签是否被选中
for(var i=0;i获取所有name值为selected的标签都被选中
}
}else{
for(var j=0;j获取所有name值为selected的标签都不被选中
}
}
}
>
< type="text/ ">
function heheda(){
var controlAll = document.getElementById("controlAll");//获取id值为controlAll的标签
var checklists = document.body.querySelectorAll("input[type='checkBox']").length;//获取所有格式为checkBox的input标签的数量
var selectedLength=document.body.querySelectorAll("input[name=selected]:checked").length;//获取所有name值为selected,并且已经被选中的input标签的数量
if(controlAll.checked){//判断当id为controlAll的标签是否被选中
controlAll.checked = false;//当被选中时,则自动取消id为controlAll的标签选中
}else{
if(selectedLength == checklists-1){//当不被选中时,判断当获取所有name值为selected,并且已经被选中的input标签的数量 与 获取所有格式为checkBox的input标签的数量-1 是否相等
controlAll.checked = true;//如果相等,则自动选中id为controlAll的标签
}
}
}
>