select2在mozilla中工作但在IE中不工作

时间:2015-10-30 08:08:28

标签: javascript jquery html css

我在表单中使用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>

1 个答案:

答案 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>