得到一个简单的问题。我想在用户点击它时获得一个下拉菜单值。我试着自己编写代码,但是无法做到。任何帮助将不胜感激。
我的Jquery
$("#week").change(function(){
var input=$("week: select").val();
alert(input); //display undefiend
我的Html
<form id="week">
<select>
<option>Week 1</option>
<option>Week 2</option>
<option>Week 3</option>
<option>Week 4</option>
<option>Week 5</option>
</select>
</form>
答案 0 :(得分:6)
这样做:
$("#week select").change(function(){
var input = $(this).val();
alert(input);
});