如何单击radio让它的值显示在文本框中
如何单击radio让它的值显示在文本框中,没有财富值了,请好心人帮帮忙我需要js代码,文本框只作展示,要的是radio的值...
如何单击radio让它的值显示在文本框中,没有财富值了,请好心人帮帮忙
我需要js代码,文本框只作展示,要的是radio的值 展开
我需要js代码,文本框只作展示,要的是radio的值 展开
展开全部
复制过去就可以运行
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>单选按钮CSS样式处理效果</title>
<style type="text/css">
</style>
<script type="text/javascript">
window.onload = function()
{
labels = document.getElementById('male').getElementsByTagName('label');
radios = document.getElementById('male').getElementsByTagName('input');
for(i=0,j=labels.length ; i<j ; i++)
{
labels[i].onclick=function()
{
if(this.className == '') {
for(k=0,l=labels.length ; k<l ; k++)
{
labels[k].className='';
radios[k].checked = false;
}
this.className='checked';
try{
document.getElementById(this.name).checked = true;
} catch (e) {}
}
}
}
}
var male_obj = {'male':'男', 'female':'女','nomale':'人妖'};
function checkform(obj) {
for (i = 0; i < obj.sex.length; i++) {
if (obj.sex[i].checked) {
alert(male_obj[obj.sex[i].value]);
var show_msg = document.getElementById("show_msg");
show_msg.value = male_obj[obj.sex[i].value];
}
}
return false;
}
</script>
</head>
<body>
<form name="reg" onsubmit="return checkform(this);">
<table border="0">
<tr>
<td><span style="line-height:15px">请选择你的性别:</span></td>
<td width="200" id="male">
<input type="radio" id="sex_male" checked="checked" name="sex" value="male" /><label name="sex_male" class="checked" for="sex_male">男</label>
<input type="radio" id="sex_female" name="sex" value="female" /><label name="sex_female" for="sex_female">女</label>
<input type="radio" id="sex_nomale" name="sex" value="nomale" /><label name="sex_nomale" for="sex_nomale">人妖</label></td>
</tr>
<tr>
<td> </td>
<td>
<input type="submit" name="Submit" value="提交" id="Submit" /></td>
</tr>
<tr><td><input type="text" id="show_msg"></td></tr>
</table>
</form>
</body>
</html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>单选按钮CSS样式处理效果</title>
<style type="text/css">
</style>
<script type="text/javascript">
window.onload = function()
{
labels = document.getElementById('male').getElementsByTagName('label');
radios = document.getElementById('male').getElementsByTagName('input');
for(i=0,j=labels.length ; i<j ; i++)
{
labels[i].onclick=function()
{
if(this.className == '') {
for(k=0,l=labels.length ; k<l ; k++)
{
labels[k].className='';
radios[k].checked = false;
}
this.className='checked';
try{
document.getElementById(this.name).checked = true;
} catch (e) {}
}
}
}
}
var male_obj = {'male':'男', 'female':'女','nomale':'人妖'};
function checkform(obj) {
for (i = 0; i < obj.sex.length; i++) {
if (obj.sex[i].checked) {
alert(male_obj[obj.sex[i].value]);
var show_msg = document.getElementById("show_msg");
show_msg.value = male_obj[obj.sex[i].value];
}
}
return false;
}
</script>
</head>
<body>
<form name="reg" onsubmit="return checkform(this);">
<table border="0">
<tr>
<td><span style="line-height:15px">请选择你的性别:</span></td>
<td width="200" id="male">
<input type="radio" id="sex_male" checked="checked" name="sex" value="male" /><label name="sex_male" class="checked" for="sex_male">男</label>
<input type="radio" id="sex_female" name="sex" value="female" /><label name="sex_female" for="sex_female">女</label>
<input type="radio" id="sex_nomale" name="sex" value="nomale" /><label name="sex_nomale" for="sex_nomale">人妖</label></td>
</tr>
<tr>
<td> </td>
<td>
<input type="submit" name="Submit" value="提交" id="Submit" /></td>
</tr>
<tr><td><input type="text" id="show_msg"></td></tr>
</table>
</form>
</body>
</html>
展开全部
“它的值” 指的是 Text?还是是否选中的布尔值?
radioButton 的 Click() 事件中,加入:
textBox1.Text = radioButton1.Checked.ToString();
textBox2.Text = radioButton1.Text;
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
是radioButton按钮吧?例如你此按钮的Name为rdo,而文本框的Name为TextBox1,那么代码就是一句话,双击这个按钮进去写他的单击事件,在这个事件里面添加下面的代码:
TextBox1.Text=rdo.Text;
TextBox1.Text=rdo.Text;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<form name="form1">
<input type="radio" name="onoff" value="1" onClick="document.all.t1.readonly=false">
启用
<input type="radio" name="onoff" value="-1" onClick="document.all.t1.readonly=true" checked>
禁用
<input name="t1" type="text" id="IP_Login" size="11" readonly>
</form>
<input type="radio" name="onoff" value="1" onClick="document.all.t1.readonly=false">
启用
<input type="radio" name="onoff" value="-1" onClick="document.all.t1.readonly=true" checked>
禁用
<input name="t1" type="text" id="IP_Login" size="11" readonly>
</form>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
var qty= $("#rid").val();
$("#tid").val(qty);
$("#tid").val(qty);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询