首页 > web前端 > css教程 > 正文

如何使用 JavaScript 创建可悬停的选择框选项?

Patricia Arquette
发布: 2024-11-01 07:59:01
原创
205 人浏览过

How to Create Hoverable Select Box Options with JavaScript?

可悬停选择框选项

当前的问题涉及创建一个选择框,当将字段悬停在该选择框上时,选项描述可见,而不是单击打开

实现

为了实现此功能,我们使用了 JavaScript 方法,如下所示:

$('#selectUl li:not(":first")').addClass('unselected');
// Hide the 'unselected' elements in the ul.

$('#selectUl').hover(
    function(){
    // mouse-over
        $(this).find('li').click(
            function(){
                $('.unselected').removeClass('unselected');
                // removes the 'unselected' style

                $(this).siblings('li').addClass('unselected');
                // adds 'unselected' style to all other li elements

                var index = $(this).index();
                $('select option:selected').removeAttr('selected');
                // deselects the previously-chosen option in the select

                $('select[name=size]')
                    .find('option:eq(' + index + ')')
                    .attr('selected',true);
                // assumes a 1:1 relationship between the li and option elements
            });
    },
    function(){
    // mouseout (or mouseleave, if they're different, I can't remember).
    });
登录后复制

在这种方法中,未选择的类用于最初隐藏所有除第一个选项外的选项。当 ul 悬停在上方时,未单击的元素将被赋予未选择的类,从而有效地消失。所选元素保持可见,其相应的值反映在底层选择字段中。

以上是如何使用 JavaScript 创建可悬停的选择框选项?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!