select取值
简单示例,如下:
jsp:
<select type="select" id="year" name="year" class="form-control" style="float: left;width: 150px;">
<option value="2018">2018年</option>
</select>
js:
var year=$("#year").val();
console.log(year);//输出2018
select取值
简单示例,如下:
jsp:
<select type="select" id="year" name="year" class="form-control" style="float: left;width: 150px;">
<option value="2018">2018年</option>
</select>
js:
var year=$("#year").val();
console.log(year);//输出2018
2643
1357

被折叠的 条评论
为什么被折叠?
