gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-28 06:57:15 24 4
gpt4 key购买 nike

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

最佳答案

我猜你错过了循环中 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>

关于javascript - select2 在 mozilla 中工作但在 IE 中不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33431291/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com