Jquery这种效果如何实现,如图请解释上代码

点击下拉框出现一个类似listbox的东西,然后选中后得到选中的值... 点击下拉框出现一个类似listbox的东西,然后选中后得到选中的值 展开
 我来答
newdot
2014-02-24 · TA获得超过453个赞
知道小有建树答主
回答量:286
采纳率:100%
帮助的人:262万
展开全部

类似用div+ul+li实现的dropdownlist啊,模仿原生select,这样的例子有好多。附上本人原创代码:

(function ($) {
    // Drop Down List Render www.7te.net 2013/11/27
    // Update 2014/01/06
    // Update 2014/01/09
    $.dropDownList = function (el, options) {
        var that = this,
            mark,
            seed;

        that.$el = $(el);
        that.el = el;
        if (that.$el.is('[multiple]')) return false;
        if (typeof that.$el.attr('id') !== 'undefined' && that.$el.attr('id') !== false) {
            mark = that.el.getAttribute('id');
        } else {
            seed = new Date();
            mark = 'select_' + seed.valueOf();
            that.$el.attr('id', mark);
        }
        //that.$el.data('dropDownList', that);
        that.rebuild = function () { // 重置select
            if (that.$el.next().is('.dropDownListInput')) {
                that.$el.next().remove();
                $('.dropDownListWrapper[rel="' + mark + '"]').remove();
            }
            //that.$el.prop('selectedIndex', 0);
        };
        that.assign = function (text, val) { // 更新select value
            $('option', that.el).filter(function () {
                return $(this).text() == text;
            }).prop('selected', true).trigger('change').trigger('blur'); // .change()
            if (that.options.func && typeof that.options.func === 'function') that.options.func(that.el, text, val);
        };
        that.init = function () { // 初始化配置项
            var dropDownListContent,
                dropDownListWrapper,
                dropDownListInput,
                dropDownListBorder,
                dropDownListItem;

            that.options = $.extend({}, $.dropDownList.defaultOptions, options);
            //that.el.style.display = 'none';
            that.$el.data('dropDownList', that.$el.data);
            that.$el.css({
                'position': 'absolute',
                'height': '1px',
                'overflow': 'hidden',
                'opacity': 0
            });
            //that.el.style.visibility = 'hidden';
            if (that.options.update) {
                that.$el.empty();
                that.rebuild();
                $.each(that.options.update, function (i) { // 重构当前select元素
                    that.$el.append('<option value="' + i + '">' + that.options.update[i] + '</option>');
                });
            }
            if (that.options.reset || that.$el.next().is('.dropDownListInput')) that.rebuild();
            dropDownListContent = '<div class="dropDownListWrapper" rel="' + mark + '" style="position:absolute;"><ul class="dropDownList">';
            if (that.options.icon) {
                that.$el.find('option').each(function () {
                    dropDownListContent += '<li rel="' + this.value + '"><i class="' + this.value + '"></i><a href="javascript:;">' + this.innerHTML + '</a></li>';
                });
            } else {
                that.$el.find('option').each(function () {
                    dropDownListContent += '<li rel="' + this.value + '"><a href="javascript:;">' + this.innerHTML + '</a></li>';
                });
            }
            dropDownListContent += '</ul></div>';
            that.$el.after('<input class="dropDownListInput ' + mark + '_dropDownList" type="text" name="' + mark + '_dropDownList" style="width:' + that.$el.width() + 'px;" />');
            $('body').append(dropDownListContent);
            dropDownListWrapper = $('.dropDownListWrapper[rel="' + mark + '"]');
            dropDownListWrapper.width(that.$el.width());
            dropDownListInput = that.$el.next();
            if (!that.options.editable) dropDownListInput.prop('readOnly', true).css({
                'cursor': 'pointer',
                'opacity': '0.99'
            });
            dropDownListInput.val(that.$el.find('option:selected').text());
            dropDownListBorder = dropDownListWrapper.find('.dropDownList');
            dropDownListItem = dropDownListBorder.find('li');
            dropDownListInput.on('click keyup', function (e) {
                if (e.type === 'click') {
                    e.stopPropagation();
                    dropDownListBorder.toggle();
                    dropDownListWrapper.css({
                        'top': (dropDownListInput.offset().top + dropDownListInput.outerHeight(true)) + 'px',
                        'width': dropDownListInput.width() + 'px',
                        'left': dropDownListInput.offset().left + 'px',
                        'zIndex': 9999
                    });
                    $('.dropDownList').not(dropDownListBorder).hide();
                } else if (e.type === 'keyup') {
                    var key = this.value.toLowerCase();

                    if ($.trim(key) === '') {
                        dropDownListItem.show();
                    } else if (!this.readOnly) { //!that.options.editable
                        dropDownListItem.hide();
                        dropDownListItem.each(function () {
                            if (this.innerHTML.toLowerCase().indexOf(key) > -1) {
                                $(this).show();
                            }
                        });
                    }
                }
            });
            dropDownListItem.click(function () {
                dropDownListInput.val($('a', this).text());
                dropDownListBorder.hide();
                that.assign(dropDownListInput.val(), this.getAttribute('rel'));
            });
            that.$el.change(function () {
                dropDownListInput.val(that.$el.find('option:selected').text());
            });
        };
        if (options && typeof options.destroy != 'undefined') {
            that.rebuild();
            that.$el.removeAttr('style');
        } else {
            that.init();
        }
    };
    $.dropDownList.defaultOptions = {
        icon: null, // 显示图标:true;默认不显示:null
        update: null, // 更新select中的option元素 {'key1': 'value1', 'key2': 'value2'...}
        reset: false, // 重新渲染当前select标签
        editable: false, //开启编辑/查找模式:true;默认不支持:false
        func: false, // 选中子项执行函数:true;默认不支持:false
        destroy: false // 取消当前渲染,默认不支持:false
    };
    $.fn.dropDownList = function (options) {
        $(document).click(function () { // 点击非Drop down list区域隐藏
            if ($('.dropDownList').length) $('.dropDownList').hide();
        });
        return this.each(function () {
            (new $.dropDownList(this, options));
        });
    };
})(jQuery);
Minos1990
2014-02-24 · TA获得超过159个赞
知道小有建树答主
回答量:406
采纳率:0%
帮助的人:193万
展开全部
你查一下chosen这个jQuery插件
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式