我在表单中使用select2 jQuery来显示下拉菜单。一切正常,但滚动条没有在IE中显示。溢出选项是隐藏的。
<tr>
<td colspan=2>
<select data-placeholder=" " name="select1" id="select1" style="width:300px;" class = "chosen-select">
<option value=""></option>
<%
for (String nature :natureList){
%>
<option value="<%=nature%>"><%=nature%></option>
<%
}
%></select>
<br></br>
</td>
</tr>
答案 0 :(得分:0)
我猜你错过了循环中option
的结束:
<select data-placeholder=" " name="select1" id="select1" style="width:300px;" class = "chosen-select">
<option value=""></option>
<% for (String nature :natureList){ %>
<option value="<%=nature%>"><%=nature%></option><!--<<< this closing tag-->
<% } %>
</select>