JavaScript中获取radio的值
单选按钮的代码如下:<body><inputname="q"type="radio"value="a"checked/><inputname="q"type="radio...
单选按钮的代码如下:
<body>
<input name="q" type="radio" value="a" checked />
<input name="q" type="radio" value="b" />
<input name="q" type="radio" value="c" />
</body>
要求很简单,就是取出value的值。用于switch语句。
能用document.write();显示出也行,不要网上的if语句。
由于要实现功能特殊,请不要在input 后添加事件,可以再外层的form中添加。 展开
<body>
<input name="q" type="radio" value="a" checked />
<input name="q" type="radio" value="b" />
<input name="q" type="radio" value="c" />
</body>
要求很简单,就是取出value的值。用于switch语句。
能用document.write();显示出也行,不要网上的if语句。
由于要实现功能特殊,请不要在input 后添加事件,可以再外层的form中添加。 展开
展开全部
<HTML>
<HEAD>
<TITLE> 可用鼠标拖动的层 </TITLE>
</HEAD>
<BODY>
<input name="q" type="radio" value="a" checked />
<input name="q" type="radio" value="b" />
<input name="q" type="radio" value="c" />
<script>
var $ = function(x){return document.getElementById(x)}
var set = function(){
var obj = document.getElementsByTagName('input');
for(var i=0;i<obj.length;i++){
obj[i].onclick = function(){
alert(this.value)
}
}
}
set();
</script>
</BODY><HTML>
<HEAD>
<TITLE> 可用鼠标拖动的层 </TITLE>
</HEAD>
<BODY>
<input name="q" type="radio" value="a" checked />
<input name="q" type="radio" value="b" />
<input name="q" type="radio" value="c" />
<script>
var $ = function(x){return document.getElementById(x)}
var set = function(){
var obj = document.getElementsByTagName('input');
for(var i=0;i<obj.length;i++){
obj[i].onclick = function(){
alert(this.value)
}
}
}
set();
</script>
</BODY><HTML>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<body>
<form name="abc">
<input name="q" type="radio" value="a" checked />
<input name="q" type="radio" value="b" />
<input name="q" type="radio" value="c" />
</body>
document.write(abc.q);
<form name="abc">
<input name="q" type="radio" value="a" checked />
<input name="q" type="radio" value="b" />
<input name="q" type="radio" value="c" />
</body>
document.write(abc.q);
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
function getRadioValue(radioName)
{
var radios = document.getElementsByName(radioName);
if(!radios)
return '';
for (var i = 0; i < radios.length; i++)
{
if (radios[i].checked)
return radios[i].value;
}
return '';
}
{
var radios = document.getElementsByName(radioName);
if(!radios)
return '';
for (var i = 0; i < radios.length; i++)
{
if (radios[i].checked)
return radios[i].value;
}
return '';
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<html>
<head>
<script type="text/javascript" language="javascript">
function Foo() {
var selectedIndex = -1;
var form1 = document.getElementById("form1");
var i = 0;
for (i=0; i<form1.q.length; i++) {
if (form1.q[i].checked)
{ selectedIndex = i;
alert("您选择项的 value 是:" + form1.q[i].value);
break;
}
}
if (selectedIndex < 0) { alert("您没有选择任何项"); } } </script>
</head>
<body>
<form id="form1" action="" method="">
<input type="radio" name="q" value="a" checked>
<input type="radio" name="q" value="b">
<input type="radio" name="q" value="c"> <br/>
<input type="button" value="检查选择项" onclick="Foo()">
</form>
</body>
</html>
<head>
<script type="text/javascript" language="javascript">
function Foo() {
var selectedIndex = -1;
var form1 = document.getElementById("form1");
var i = 0;
for (i=0; i<form1.q.length; i++) {
if (form1.q[i].checked)
{ selectedIndex = i;
alert("您选择项的 value 是:" + form1.q[i].value);
break;
}
}
if (selectedIndex < 0) { alert("您没有选择任何项"); } } </script>
</head>
<body>
<form id="form1" action="" method="">
<input type="radio" name="q" value="a" checked>
<input type="radio" name="q" value="b">
<input type="radio" name="q" value="c"> <br/>
<input type="button" value="检查选择项" onclick="Foo()">
</form>
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询