<html>
<script language=javascript>
function choosepro(aa)
{
var checkCount = 1;
var iTemp = 0;
var len = document.getElementsByName("toDelGWCProID");
if(len.length){
for(var i=0;i<len.length;i++){
if(len[i].checked){
iTemp++;
if(checkCount<iTemp){
alert("您选的商品不能大于"+checkCount+"件");
aa.checked=false;
return;
}
}
}
}else{
if(len.checked){
iTemp++;
if(checkCount<iTemp){
alert("您选的商品不能大于"+checkCount+"件");
aa.checked=false;
return;
}
}
}
}
</script>
<body>
<input type=checkbox name="toDelGWCProID" value="2" onClick="choosepro(this)" />
<input type=checkbox name="toDelGWCProID" value="4" οnclick="choosepro(this)" />
<input type=checkbox name="toDelGWCProID" value="4" οnclick="choosepro(this)" />
<input type=checkbox name="toDelGWCProID" value="4" οnclick="choosepro(this)" />
<input type=checkbox name="toDelGWCProID" value="4" οnclick="choosepro(this)" />
</body>
</html>