function selectGridViewAllCheckBox(gvID,columnIndex)
{
var _this=document.getElementById(gvID);
for(var i=1;i<_this.rows.length;i++)
{
if(typeof(_this.rows[i].cells[columnIndex])=="object")
{
for(var j=0;j<_this.rows[i].cells[columnIndex].childNodes.length;j++)
{
var oj=_this.rows[i].cells[columnIndex].childNodes[j];
findChildCheckBox(oj);
}
}
}
}
function findChildCheckBox(oj)
{
var result=false;
for(attr in oj)
{
if(attr=="type")
{
if(oj.getAttribute(attr)=="checkbox")
{
result=true;
try{
if(oj.checked==true)
{
oj.checked=false;
}
else
{
oj.checked=true;
}
}catch(e){}
}
}
}
if(!result)
{
for(var c=0;c<oj.childNodes.length;c++)
{
findChildCheckBox(oj.childNodes[c]);
}
}
}
</script>
如对本文有疑问,请提交到交流论坛,广大热心网友会为你解答!! 点击进入论坛