当文本框中输入值后下拉列表中自动选中一个值
当在文本框中输入值后,下拉列表框中自动默认选中一个值求助!各位大虾们!用JS来写,怎么写啊?当用户在文本框中输入东西时,下拉列表框中自动选中一个默认的值,不输入则要手动在...
当在文本框中输入值后,下拉列表框中自动默认选中一个值
求助!各位大虾们!用JS来写,怎么写啊?
当用户在文本框中输入东西时,下拉列表框中自动选中一个默认的值,不输入则要手动在下拉列表中去选值
大虾:首先谢谢您的回答.你的很好,可是我这个是用WEB页上,下拉列表都是用的标准控件都不是用的html控件,
能不能有更好的办法呢? 展开
求助!各位大虾们!用JS来写,怎么写啊?
当用户在文本框中输入东西时,下拉列表框中自动选中一个默认的值,不输入则要手动在下拉列表中去选值
大虾:首先谢谢您的回答.你的很好,可是我这个是用WEB页上,下拉列表都是用的标准控件都不是用的html控件,
能不能有更好的办法呢? 展开
2个回答
展开全部
<html>
<head>
<script language="javascript" type="text/livescript">
function setDropDown(str){
var ops=document.getElementById("dr1").options;//取出下拉列表的项对象集合
for(var i=0;i<ops.length;i++){//遍历集合
if(str==ops[i].value){//如果该项的value等于文本框填写的值
document.getElementById("dr1").options[i].selected="selected";//设定下拉列表相应的下拉项的选中
break;
}
}
}
</script>
</head>
<body>
<input type="text" name="textfield" id="t1" onblur="setDropDown(this.value);" />
<p>
<select name="select" id="dr1">
<option value="1" selected="selected">1</option>
<option value="2">2</option>
<option value="3">3</option>
</select>
</p>
</body>
</html>
<head>
<script language="javascript" type="text/livescript">
function setDropDown(str){
var ops=document.getElementById("dr1").options;//取出下拉列表的项对象集合
for(var i=0;i<ops.length;i++){//遍历集合
if(str==ops[i].value){//如果该项的value等于文本框填写的值
document.getElementById("dr1").options[i].selected="selected";//设定下拉列表相应的下拉项的选中
break;
}
}
}
</script>
</head>
<body>
<input type="text" name="textfield" id="t1" onblur="setDropDown(this.value);" />
<p>
<select name="select" id="dr1">
<option value="1" selected="selected">1</option>
<option value="2">2</option>
<option value="3">3</option>
</select>
</p>
</body>
</html>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<html>
<head>
<script
language="javascript"
type="text/livescript">
function
setDropDown(str){
var
ops=document.getElementById("dr1").options;//取出下拉列表的项对象集合
for(var
i=0;i<ops.length;i++){//遍历集合
if(str==ops[i].value){//如果该项的value等于文本框填写的值
document.getElementById("dr1").options[i].selected="selected";//设定下拉列表相应的下拉项的选中
break;
}
}
}
</script>
</head>
<body>
<input
type="text"
name="textfield"
id="t1"
onblur="setDropDown(this.value);"
/>
<p>
<select
name="select"
id="dr1">
<option
value="1"
selected="selected">1</option>
<option
value="2">2</option>
<option
value="3">3</option>
</select>
</p>
</body>
</html>
<head>
<script
language="javascript"
type="text/livescript">
function
setDropDown(str){
var
ops=document.getElementById("dr1").options;//取出下拉列表的项对象集合
for(var
i=0;i<ops.length;i++){//遍历集合
if(str==ops[i].value){//如果该项的value等于文本框填写的值
document.getElementById("dr1").options[i].selected="selected";//设定下拉列表相应的下拉项的选中
break;
}
}
}
</script>
</head>
<body>
<input
type="text"
name="textfield"
id="t1"
onblur="setDropDown(this.value);"
/>
<p>
<select
name="select"
id="dr1">
<option
value="1"
selected="selected">1</option>
<option
value="2">2</option>
<option
value="3">3</option>
</select>
</p>
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询