单选问题
<script language="javascript">
<!--
function CheckData()
{
if(document.all.txt_username.value=="" && document.all.txt_password.value=="" && !document.all.rdBtnLst_userType.checked){
alert( "-请输入用户名!\n-请输入密码!\n-请选择用户类型!");
return false; }
else if(document.all.txt_username.value=="" && document.all.txt_password.value=="" && document.all.rdBtnLst_userType.checked==true){
alert("-请输入用户名!\n-请输入密码!");
return false;}
}
-->
</SCRIPT>
为什么我选了 单选按钮 他也说没选上啊