gpt4 book ai didi

html - dropdown list moving upwards in IE11

转载 作者:行者123 更新时间:2023-11-28 06:35:10 25 4
gpt4 key购买 nike

我有一个显示下拉列表的方法。它在 IE 11 中的行为与其他浏览器不同。

<h:selectOneMenu value="#{eventConfigBean.selectedData.orgId}" id="orgId" 
disabled="#{eventConfigBean.selectedData.disableOrgId}" tabindex="1"
style="width:100%;font-size:11;">
<f:selectItem itemLabel="" itemValue="" />
<c:forEach var="orgIdList" items="#{eventConfigBean.orgIdVOList}">
<f:selectItem itemLabel="#{orgIdList.value}" itemValue="#{orgIdList.value}" />
</c:forEach>
<a4j:support event="onchange" action="#{eventConfigBean.getEventNames}" reRender="eventName" />
</h:selectOneMenu>

第一次选择元素时它工作正常,

Screenshot: First time selecting an item:

但重新选择时,元素列表向上移动并以所选元素为中心。

Screenshot: After Re selecting item list is moving upwards:

最佳答案

我遇到了同样的问题。在 codepen 中找到了解决方案

but it required some extra wrapper div
<div id="box">
<div id="open"></div>
<select>
<option>first</option>
<option>second</option>
<option>third</option>
</select>
<div id="mark"></div>
<div id="refer"></div>
</div>

https://codepen.io/anon/pen/zvrbeW?editors=0100

关于html - <h :selectOneMenu> dropdown list moving upwards in IE11,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34742422/

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