今天遇到一个难题,还好最后还是解决了。
<option>请选择</option>
<c:forEach items="${customerTypeList}" var="customerTypelist" varStatus="i">
<option value="${customerTypelist.id}" select="selected">${customerTypelist.name}</option>
</c:forEach>
要获取${customerTypelist.name} 这里的值。
原来这里是没有select=”selected”
加上之后就可以在js中获取到了。
js的代码如下
$("#customerType").find("option:selected").text();