checkbox 的allchose和antichose
<html>
<head>
<script>
functionantichose()
{for(i=0;i<form1.checkbox.length;i++)
{s="document.form1.checkbox["+i+"].click();";
eval(s);}
}
functionallchose()
{for(i=0;i<form1.checkbox.length;i++)
{s="document.form1.checkbox["+i+"].checked=true;";
eval(s);}
}
</script>
</head>
<body>
<formname=form1>
<inputtype=checkbox name=checkbox>
<inputtype=checkbox name=checkbox>
<inputtype=checkbox name=checkbox>
<inputtype=checkbox name=checkbox>
<inputtype=button onclick="allchose();"value="全选">
<inputtype=button onclick="antichose();" value="反选">
</form>
</body>
</html>
廖世勇