admin管理员组文章数量:1341983
Hello all i am trying to change one dropdowns selected index once another is changed, and i want to use jquery to select the dropdowns. Here is some of my code:
<div id = "monthlist">
<select name = "months">
<option value = 1 > January </option>
<option value = 2 > Febuary </option>
<option value = 3 > March </option>
<option value = 4 > April </option>
<option value = 5 > May </option>
<option value = 6 > June </option>
<option value = 7 > July </option>
<option value = 8 > August </option>
<option value = 9 > September </option>
<option value = 10 > October</option>
<option value = 11 > November </option>
<option value = 12 > December </option>
</select>
</div>
<div id = "yearlist">
<select name = "years">
<option value = 1993 > 1993 </option>
<option value = 1994 > 1994 </option>
<option value = 1995 > 1995 </option>
<option value = 1996 > 1996 </option>
<option value = 1997 > 1997 </option>
<option value = 1998 > 1998 </option>
<option value = 1999 > 1999 </option>
<option value = 2000 > 2000 </option>
<option value = 2001 > 2001 </option>
</select>
</div>
The JQuery code is here:
$("#monthlist").change(function(){
$("select#yearlist").prop('selectedIndex', 2);
});
I want to set the selected index of "yearlist" to a specific index once the monthlist dropdown is changed. But my selector or my code is incorrect, any suggestion or tips will be greatly appreciated.
Hello all i am trying to change one dropdowns selected index once another is changed, and i want to use jquery to select the dropdowns. Here is some of my code:
<div id = "monthlist">
<select name = "months">
<option value = 1 > January </option>
<option value = 2 > Febuary </option>
<option value = 3 > March </option>
<option value = 4 > April </option>
<option value = 5 > May </option>
<option value = 6 > June </option>
<option value = 7 > July </option>
<option value = 8 > August </option>
<option value = 9 > September </option>
<option value = 10 > October</option>
<option value = 11 > November </option>
<option value = 12 > December </option>
</select>
</div>
<div id = "yearlist">
<select name = "years">
<option value = 1993 > 1993 </option>
<option value = 1994 > 1994 </option>
<option value = 1995 > 1995 </option>
<option value = 1996 > 1996 </option>
<option value = 1997 > 1997 </option>
<option value = 1998 > 1998 </option>
<option value = 1999 > 1999 </option>
<option value = 2000 > 2000 </option>
<option value = 2001 > 2001 </option>
</select>
</div>
The JQuery code is here:
$("#monthlist").change(function(){
$("select#yearlist").prop('selectedIndex', 2);
});
I want to set the selected index of "yearlist" to a specific index once the monthlist dropdown is changed. But my selector or my code is incorrect, any suggestion or tips will be greatly appreciated.
Share edited Feb 5, 2013 at 16:07 Ron 23.5k33 gold badges114 silver badges214 bronze badges asked Feb 5, 2013 at 15:49 Guy code manGuy code man 851 gold badge3 silver badges7 bronze badges 1- take a look to this link. it worked out great for me – BrOSs Commented Feb 5, 2013 at 15:53
2 Answers
Reset to default 7You're trying to select the month and year lists by their names. Use the ID of the outer divs instead...
$("div#monthlist select").change(function(){
$("div#yearlist select")[0].selectedIndex = 2;
});
is it you are looking for ??
$("#monthlist").change(function(){
$("#yearlist").get(0).selectedIndex = 2;
}
And correction to your case :
$("#monthlist").change(function(){
$("select#yearlist").attr('selectedIndex', 2);
}
And one more choice for index
$("#monthlist").change(function(){
$('#yearlist option').eq(2).attr('selected', 'selected');
}
本文标签: javascriptChanging the selected index of my dropdown using JqueryStack Overflow
版权声明:本文标题:javascript - Changing the selected index of my dropdown using Jquery - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743687453a2522131.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论