如何使选择字段显示选项列表? - JavaScript/jQuery
我正在尝试模仿对选择字段的关注。
例如,当用户获得对选择字段的关注时,选择字段会在下拉列表中显示选项。
使用 $('select').focus() 时,不会显示选项。
这家伙有什么帮助吗? =)
I'm trying to mimic focus on a select field.
e.g. When a user gains focus on a select field, the select field shows the options in a drop down list.
When using $('select').focus(), the options are not shown.
Any help on this one guys? =)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在聚焦时将选择的大小属性设置为 6(或任何您喜欢的小整数),在模糊时设置为 0。
Set the size attribute of the select to 6 (or whatever small int you like) on focus and back to 0 on blur.