jquery 怎么把下拉框选中的值 赋给文本框

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery 怎么把下拉框选中的值 赋给文本框相关的知识,希望对你有一定的参考价值。

获取下拉框值可直接用$('#id').val()
例如:
<select id="names">
<option value='zhangsan'>张三</option>

<option value='lisi' selected>李四</option>
</select>
<input type="text" id="myText" value=""/>
1、获取id=names下拉框选中值
var name = $("#names").val();
2、将获取的值赋给id=myText文本框
$("#myText").val(name);
参考技术A

下拉框和文本框的取值和赋值都是用 val() 函数,取值时参数为空,赋值时值作为参数。

    获取id=names下拉框选中值
    var name = $("#names").val();

    将获取的值赋给id=myText文本框
    $("#myText").val(name)。

参考技术B 是很简单
$('input:text').val($('select').val());
下拉框和文本框的取值和赋值都是用 val() 函数,取值时参数为空,赋值时值作为参数
参考技术C <!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 src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
</head>

<body>
<input type="text" value="" id="get" />
<select id="orz">
<option value="1">111</option>
<option value="2">222</option>
<option value="3">333</option>
</select>
<script>
$("#orz").change(function()
$("#get").val($(this).val());
);
</script>

</body>
</html>本回答被提问者采纳
参考技术D <!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 src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
</head>

<body>
<input type="text" value="" id="get" />
<select id="orz">
<option value="1">111</option>
<option value="2">222</option>
<option value="3">333</option>
</select>
<script>
$("#orz").change(function()
$("#get").val($(this).val());
);
</script>

</body>
</html>

jquery怎么根据后台传过来的值动态设置下拉框单选框选中

$(function(){
var sex=$("#sex").val();
var marriageStatus=$("#marriageStatus").val();
var education=$("#education").val();
if(!isnull(sex)){
$("input:radio[name=‘sex‘][value="+sex+"]").attr(‘checked‘,‘true‘);
}
if(!isnull(marriageStatus)){
$("input:radio[name=‘marriageStatus‘][value="+marriageStatus+"]").attr(‘checked‘,‘true‘);
}
if(!isnull(education)){
$("#education1 option[value=‘"+education+"‘]").attr("selected", true);
}
});
<input type="hidden" id="sex" value="${serviceInfo.sex}"/>
<input type="radio" name="sex" value="0" checked="checked"/>男
<input type="radio" name="sex" value="1"/>女
<input type="hidden" id="marriageStatus" value="${serviceInfo.marriageStatus}"/>
<input type="radio" name="marriageStatus" value="0" checked="checked"/>是
<input type="radio" name="marriageStatus" value="1"/>否
<input type="hidden" id="education" value="${serviceInfo.education}"/>
<select name="education" id="education1">
<option value="硕士">硕士</option>
<option value="本科">本科</option>
<option value="大专">大专</option>
<option value="其它">其它</option>
</select>

以上是关于jquery 怎么把下拉框选中的值 赋给文本框的主要内容,如果未能解决你的问题,请参考以下文章

yii中怎样用jq得到下拉框的值并赋值给文本框

c#里面ComBox下拉框里面比较里面是不是有这个值

c#里面,ComBox下拉框比较里面,是不是有这个值?

多选下拉.并且把选中的值.显示在文本框中.

EasyUI点击下拉框选中人名后将薪酬数据回显到文本框中,薪酬文本框是用c:if循环出来的,代码见下方,

angularJS 可编辑下拉选项框