为什么下拉组合框列表(选择 html 标签)在 IE 7 中很快消失,但在 Firefox 中工作正常
我有一个组合框,它位于网页的狭窄部分。下面是我的下拉菜单 html。
问题是,仅在 IE 7 中(在 Firefox 中工作正常),在我单击下拉菜单后,会弹出项目列表,我去单击列表中的一个项目,但在我有机会单击之前它就消失了。
它似乎在 IE8 中也工作得很好,但在 IE7(我的大多数用户)中,没有人有时间在列表消失之前单击。
<select id="staticData">
<option value="">(Please select)</option>
<optgroup label="Geographical">
<option value="B">United states of AMerica</option>
<option value="C">Europe</option>
<option value="D">Asia</option>
</optgroup>
<optgroup label="Related">
<option value="RoadmapItem">Roadmap items</option>
</optgroup>
</select>
i have a combobox and its on a narrow part of a webpage. below is my dropdown html.
THe issue is that in IE 7 only (works fine in firefox) after i click on the dropdown, the list of items pops up and i go to click on an item in the list and it disappears before i get a chance to click.
It seems to work fine in IE8 as well but in IE7 (most of my users) no one has time to click before the list disappears.
<select id="staticData">
<option value="">(Please select)</option>
<optgroup label="Geographical">
<option value="B">United states of AMerica</option>
<option value="C">Europe</option>
<option value="D">Asia</option>
</optgroup>
<optgroup label="Related">
<option value="RoadmapItem">Roadmap items</option>
</optgroup>
</select>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这解决了它。
http://css-tricks.com/select-cuts -off-options-in-ie-fix/
This fixed it.
http://css-tricks.com/select-cuts-off-options-in-ie-fix/