选择框隐藏下拉菜单中的第一个选项条目?
当用户单击下拉框查看选项时,是否可以隐藏第一个选项,即 。因此文本选择一个不会出现在列表中
Is it possible to hide the first option i.e. <option>Select One</option>
when the user clicks the dropdown box to see the options. So the text Select One does not appear in the list
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
由于没有可靠的跨浏览器方法来隐藏
option
元素,因此最好的选择是在focus
上删除它,然后在blur
上再次添加它:这是一个工作示例
As there is no reliable cross browser way to hide
option
elements, your best bet is to remove it onfocus
and add it again onblur
:Here's a working example
当 select 打开时,您可以使用纯 HTML 来隐藏选项的第一个元素,如下所示:
这是工作小提琴:
https://jsfiddle.net/sujan_mhrzn/y5kxtkc6/
You can use your plain HTML for hiding the first Element of option when select is opened as:
Here is the working fiddle:
https://jsfiddle.net/sujan_mhrzn/y5kxtkc6/
作为一个快速的 CSS 选项,您可以为下拉菜单指定一个 id,然后
上面使用 #cat 作为下拉菜单的 id
此解决方案的教程
As a quick CSS option you could give the dropdown an id and then
The above uses #cat as the id for the dropdown
Tutorial for this solution
唯一的跨浏览器方法是完全删除它。用简单的 JS:
jQuery:
The only cross-browser method is to remove it entirely. In plain ol' JS:
jQuery:
如果您想删除该选项,简单的代码如下:
其中
mySelect
是选择框的 id。编辑:我更改了代码以附加焦点事件的事件侦听器。但是,每当您选择选择框时,此代码都会每次删除第一个选项。很确定这不是您所需要的。您可以使用 onblur 再次附加该选项,但我不知道这是否是您所需要的。请明确你想做什么。
If you want to remove the option, the simples code would be:
where
mySelect
is the id of the select box.Edit: I changed the code to append an event listener for the focus event. This code, however, will remove the first option every time you select the select box. Pretty sure this is not what you need. You could use onblur to append the option again, but I don't know if that's what you need. Please clarify what you want to do.