标签:option cte val 选中 sel bsp for var form
1、html
<select class="form-control" id="sex">
<option value="-1" selected="selected">请选择</option>
<option value="1">男</option>
<option value="2">女</option>
</select>
2、回显/选中 $("#sex").val(data.sex);
3、取值 var sex = $("#sex option:selected").val();
标签:option cte val 选中 sel bsp for var form
原文地址:http://www.cnblogs.com/xdcr/p/6222573.html