iii
我有一张超文本,有几张带有检查箱的物品清单(表格中)。 表中每一行各有以下 co:
<input type= checkbox name= Events[] value= 1 >
<input type= checkbox name= Events[] value= 2 >
etc
我想用一个“显示所有”的链接名称,在点击时将选择所有项目。
我正在使用以下联合材料,但它没有发挥作用。
function SelectAll(form)
{
for(var i in form.Events.childNodes)
if(form.Events.childNodes[i].type == "checkbox")
form.Events.childNodes[i].checked = true;
}