明凯博客

关注网站技术,一个特立独行的程序员

获取单选按钮的值并传值

js获取表单单选按钮的值。这是一个很基础的问题。看看下面这个表单。

1
2
3
4
5
6
7
<formmethod ="post"name="form">
<label><inputtype ="radio"name="radio"value="A">A</inputtype></label>
<label><inputtype ="radio"name="radio"value="B">B</inputtype></label>
<label><inputtype ="radio"name="radio"value="C">C</inputtype></label>
<inputtype ="button"onclick="ok()"value="测试选择值">
 
</inputtype></formmethod>

js获取表单的信息。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<script language="javascript" type="text/javascript">  
<!--  
function ok() 
{  
var temp=document.getElementsByName("radio");  
for (i=0;i<temp.length;i++){  
//遍历Radio 
if(temp[i].checked)  
{alert("你选择了"+temp[i].value);  
//获取Radio的值 
document.form2.textfield.value="你选择了"+temp[i].value;  
//传递给另外一个表单 
}  
}  
}  
-->  
</script>

这样就可以了。传值和提取数据都成功。

, , , ,

相关文章

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注