选择框隐藏下拉菜单中的第一个选项条目?

发布于 2024-12-11 02:12:33 字数 110 浏览 0 评论 0原文

当用户单击下拉框查看选项时,是否可以隐藏第一个选项,即 。因此文本选择一个不会出现在列表中

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

霊感 2024-12-18 02:12:33

由于没有可靠的跨浏览器方法来隐藏 option 元素,因此最好的选择是在 focus 上删除它,然后在 blur 上再次添加它:

jQuery(document).ready(function () {
    var first = jQuery('#myselect').find('option').first();
    jQuery('#myselect').on('focus', function (e) {
        first.remove();
    }).on('blur', function (e) {
        jQuery(this).find('option').first().before(first);
    });
});

这是一个工作示例

As there is no reliable cross browser way to hide option elements, your best bet is to remove it on focus and add it again on blur:

jQuery(document).ready(function () {
    var first = jQuery('#myselect').find('option').first();
    jQuery('#myselect').on('focus', function (e) {
        first.remove();
    }).on('blur', function (e) {
        jQuery(this).find('option').first().before(first);
    });
});

Here's a working example

小忆控 2024-12-18 02:12:33

当 select 打开时,您可以使用纯 HTML 来隐藏选项的第一个元素,如下所示:

<select name="list">
    <option selected="selected" hidden>First Element</option>
    <option>Second Element</option>
    <option>Third Element</option>

</select>

这是工作小提琴:
https://jsfiddle.net/sujan_mhrzn/y5kxtkc6/

You can use your plain HTML for hiding the first Element of option when select is opened as:

<select name="list">
    <option selected="selected" hidden>First Element</option>
    <option>Second Element</option>
    <option>Third Element</option>

</select>

Here is the working fiddle:
https://jsfiddle.net/sujan_mhrzn/y5kxtkc6/

心碎无痕… 2024-12-18 02:12:33

作为一个快速的 CSS 选项,您可以为下拉菜单指定一个 id,然后

#cat option:first-child {
 display: none;
 } 

上面使用 #cat 作为下拉菜单的 id

此解决方案的教程

As a quick CSS option you could give the dropdown an id and then

#cat option:first-child {
 display: none;
 } 

The above uses #cat as the id for the dropdown

Tutorial for this solution

樱娆 2024-12-18 02:12:33

唯一的跨浏览器方法是完全删除它。用简单的 JS:

var sel = document.getElementById("mySelect");
sel.onfocus = function () {
    select.onfocus = null;
    sel.removeChild(sel.firstChild);
}

jQuery:

$("#mySelect").focus(function () { 
    $(this).remove(this.firstChild).unbind(arguments.callee); 
});

The only cross-browser method is to remove it entirely. In plain ol' JS:

var sel = document.getElementById("mySelect");
sel.onfocus = function () {
    select.onfocus = null;
    sel.removeChild(sel.firstChild);
}

jQuery:

$("#mySelect").focus(function () { 
    $(this).remove(this.firstChild).unbind(arguments.callee); 
});
泛滥成性 2024-12-18 02:12:33

如果您想删除该选项,简单的代码如下:

var mySelect = document.getElementById('mySelect');

mySelect.onfocus = function() { mySelect.removeChild(mySelect.options[0]); }

其中 mySelect 是选择框的 id。

编辑:我更改了代码以附加焦点事件的事件侦听器。但是,每当您选择选择框时,此代码都会每次删除第一个选项。很确定这不是您所需要的。您可以使用 onblur 再次附加该选项,但我不知道这是否是您所需要的。请明确你想做什么。

If you want to remove the option, the simples code would be:

var mySelect = document.getElementById('mySelect');

mySelect.onfocus = function() { mySelect.removeChild(mySelect.options[0]); }

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文