请问这个问题为什么?有关radio
部分程序::
<form name=register><input type="radio" name="isclass" value="1">
是
<input type="radio" name="isclass" value="0">
否</td> <font color=blue>*</font></font>
表但提交的时候,我用了如下的检查:
If register.isclass.value=empty Then
MsgBox "必须填",64, "Oh no!"
Exit Sub
End if
If register.isclass.value="1" Then
MsgBox "1111",64, "Oh no!"
elseif register.isclass.value="2" then
MsgBox "22222",64, "Oh no!"
End if
register.submit
但是总是说不支持register.isclass.value属性,为什么?