请问如果我用radio做一个二选一的选择,想在表单提交前判断选择的是哪一个,我现在写的是
if form1.checkone.value="1" then .......系统提示数该对象不支持方法,哪位高手可以告诉我如何用vbscript和javascript如何取得radio的值,谢谢
[CODE]
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<script language="javascript">
function checkrd()
{
for (i=0;i<document.form1.Sex.length;i++)
{
if(document.form1.Sex[i].checked)
{
alert("你选择了"+document.form1.Sex[i].value);
return false;
}
}
}
</script>
</head>
<body>
<form id="form1" name="form1" method="post" action="">
<label>
<input name="Sex" type="radio" value="男" checked="checked" />
</label>
<label>
男
<input type="radio" name="Sex" value="女" />
女
</label>
<label>
<input type="submit" name="Submit" value="提交" onclick="return checkrd()"/>
</label>
</form>
</body>
</html>
[/CODE]
[此贴子已经被作者于2006-1-27 3:05:06编辑过]