(2001-08-09 11:33:34)   CA.killerJ
<script language="javascript">
function checkme(){
for(i=0;i<document.all.radio1.length;i++){
if(document.all.radio1[i].checked)
return true;
}
alert("选一个,ok?");
return fasle;
}
</script>
<INPUT name="radio1" type="radio" value="style">Style
<INPUT name="radio1" type="radio" value="barcode">Barcode
<INPUT type="button" value="check" onclick=checkme()>