这时我写的一个测试页面,本意是想根据一个radio(个人用户,公司用户)的选择,用js判断radio的值来弹出不同的会话框,但是我运行时发现js函数没有对这个radio进行判断,不管怎么选择都是弹出同一个会话框,做了几次修改都没有成功,请高手赐教,我这里先谢了。下面是源代码
<%@ page contentType="text/html;charset=UTF-8"%>
<html>
<head>
<title>welcome</title>
</head>
<script language="JavaScript">
function ok()
{
if(document.loginform.usertype.value=="0"){
alert("person test!");
}else{
alert("company test!");
}
}
</script>
<body>
<form name="loginform" method="post" action="" >
<table>
<tbody>
<tr>
<td>类型:</td>
<td><input type=radio checked value="0" name=usertype>
个人会员 </td>
<td><input type=radio value="1" name=usertype>
企业会员</td>
</tr>
<tr>
<td><input type="button" name="Submit" value="test" onClick="ok()"></td>
</tr>
</tbody>
</table>
</form>
</body>
</html>