1

我已经在这个站点和其他站点之间搜索了高低(7 多个小时)以寻找解决方案,但没有任何效果,所以就这样吧。

我有一个组合框,根据用户的选择,我需要一个特定的 div 来显示

<div class="ui-widget">
        <label>Select Employer: </label>
            <select id="combobox" name="combobox">
                <option value="">Select one...</option>
                <option id="WallyS" value="WallyS"> Walmart 144 Martion Way Marion, TN 55555</option>
                <option id="AppliS" value="AppliS">Appliance Mart Wax Goofy Drive Marion, TN 55555</option>
                <option id="BBBS" value="BBBS">Bed Bath and Beyond Presedential Parkway Marion, TN 55555</option>
            </select>
    </div>

<div class="WalLDP" style="display:none">content</div>
<div class="AppliDP" style="display:none">content</div>
<div class="BBBDP" style="display:none">content</div>

WallDP Div需要显示何时选择选项Wallys。AppliDP 需要在选择 AppliS 时显示。BBBBDP 需要在选择 BBBS 时显示。提前感谢任何人

*编辑我感谢迄今为止的所有帮助,但每次我输入一个对组合框执行任何操作的函数时,隐藏我为它提供的函数就会停止工作。这是组合框的显示/隐藏代码。我知道它可以缩短,但是当我尝试时它似乎搞砸了。显示的组合框也需要获得焦点,再次感谢您的帮助。

*编辑似乎每次我输入 .change 函数或除从组合框中检索值的函数之外的任何内容时,它都会使组合框在选择 EPDB 单选按钮时不会出现。

$(function () {
        $("[id=EPDB]").each(function (i) {
            $(this).change(function () {
                $(".ui-widget").show("fast");
            });
        });
    });

    $(function () {
        $("[id=PFB]").each(function (i) {
            $(this).change(function () {
                $(".ui-widget").hide("fast");
            });
        });
    });

    $(function () {
        $("[id=VFB]").each(function (i) {
            $(this).change(function () {
                $("ui-widget").hide("fast");
            });
        });
    });

由于选择器是一个实际的自动完成组合框,我还将添加代码,因为在更多地使用它之后,我很确定我的问题的根源可能来自于此。

(function ($) {
        $.widget("ui.combobox", {
            _create: function () {
                var input,
                that = this,
                select = this.element.hide(),
                selected = select.children(":selected"),
                value = selected.val() ? selected.text() : "",
                wrapper = this.wrapper = $("<span>")
                    .addClass("ui-combobox")
                    .insertAfter(select);

                function removeIfInvalid(element) {
                    var value = $(element).val(),
                    matcher = new RegExp("^" + $.ui.autocomplete.escapeRegex(value) + "$", "i"),
                    valid = false;
                    select.children("option").each(function () {
                        if ($(this).text().match(matcher)) {
                            this.selected = valid = true;
                            return false;
                        }
                    });
                    if (!valid) {
                        // remove invalid value, as it didn't match anything
                        $(element)
                        .val("")
                        .attr("title", value + " didn't match any item")
                        .tooltip("open");
                        select.val("");
                        setTimeout(function () {
                            input.tooltip("close").attr("title", "");
                        }, 2500);
                        input.data("autocomplete").term = "";
                        return false;
                    }
                }

                input = $("<input>")
                .appendTo(wrapper)
                .val(value)
                .attr("title", "")
                .addClass("ui-state-default ui-combobox-input")
                .autocomplete({
                    delay: 0,
                    minLength: 0,
                    source: function (request, response) {
                        var matcher = new RegExp($.ui.autocomplete.escapeRegex(request.term), "i");
                        response(select.children("option").map(function () {
                            var text = $(this).text();
                            if (this.value && (!request.term || matcher.test(text)))
                                return {
                                    label: text.replace(
                                        new RegExp(
                                            "(?![^&;]+;)(?!<[^<>]*)(" +
                                            $.ui.autocomplete.escapeRegex(request.term) +
                                            ")(?![^<>]*>)(?![^&;]+;)", "gi"
                                        ), "<strong>$1</strong>"),
                                    value: text,
                                    option: this
                                };
                        }));
                    },
                    select: function (event, ui) {
                        ui.item.option.selected = true;
                        that._trigger("selected", event, {
                            item: ui.item.option
                        });
                    },
                    change: function (event, ui) {
                        if (!ui.item)
                            return removeIfInvalid(this);
                    }
                })
                .addClass("ui-widget ui-widget-content ui-corner-left");

                input.data("autocomplete")._renderItem = function (ul, item) {
                    return $("<li>")
                    .data("item.autocomplete", item)
                    .append("<a>" + item.label + "</a>")
                    .appendTo(ul);
                };

                $("<a>")
                .attr("tabIndex", -1)
                .attr("title", "Show All Items")
                .tooltip()
                .appendTo(wrapper)
                .button({
                    icons: {
                        primary: "ui-icon-triangle-1-s"
                    },
                    text: false
                })
                .removeClass("ui-corner-all")
                .addClass("ui-corner-right ui-combobox-toggle")
                .click(function () {
                    // close if already visible
                    if (input.autocomplete("widget").is(":visible")) {
                        input.autocomplete("close");
                        removeIfInvalid(input);
                        return;
                    }

                    // work around a bug (likely same cause as #5265)
                    $(this).blur();

                    // pass empty string as value to search for, displaying all results
                    input.autocomplete("search", "");
                    input.focus();
                });

                input
                    .tooltip({
                        position: {
                            of: this.button
                        },
                        tooltipClass: "ui-state-highlight"
                    });
            },

            destroy: function () {
                this.wrapper.remove();
                this.element.show();
                $.Widget.prototype.destroy.call(this);
            }
        });
    })(jQuery);

    $(function () {
        $("#combobox").combobox();
        $("#toggle").click(function () {
            $("#combobox").toggle();
            });
    });
4

3 回答 3

3

根据您需要代码的灵活性,我创建了这个版本,它向内容区域添加了一个类,并更改了选择选项的值。还发现了一个我纠正的不匹配类(walLDP 到 wallyDP)。

HTML:

<div class="ui-widget">
        <label>Select Employer: </label>
        <select id="combobox" name="combobox">
                <option value="">Select one...</option>
                <option id="WallyS" value="Wally"> Walmart 144 Martion Way Marion, TN 55555</option>
                <option id="AppliS" value="Appli">Appliance Mart Wax Goofy Drive Marion, TN 55555</option>
                <option id="BBBS" value="BBB">Bed Bath and Beyond Presedential Parkway Marion, TN 55555</option>
        </select>
</div>

jQuery:

$('#combobox').change(function(){
    var dropDownId = $(this).val();
    var contentBox = $('.' + dropDownId + 'DP');

    if($('.comboboxDisplay').is(':visible')){
        $('.comboboxDisplay').hide();
    };

    contentBox.show();
});​

演示:http: //jsfiddle.net/yMNdD/1/

根据您想要的功能,您可以将方法更改为fadeOut()、fadeIn()、slideUp()、slideDown() 等。

于 2012-10-18T06:29:20.000 回答
1

这是工作示例:

http://jsfiddle.net/wYsdN/2/

我为每个 div 添加了一个类,如果不是问题,则称为hideable. 基本上,当在组合框上触发更改事件时,我会隐藏所有 div(我不知道最近显示了哪一个,尽管它是可行的),然后根据您的逻辑显示一个

于 2012-10-18T06:17:05.400 回答
1

您可以onChange在组合框上使用事件

$('#combobox').change(function() {
    if ($(this).val() == 'WallyS') {
        $('.WalLDP').attr('style', 'display:visible');
        $('.AppliDP').attr('style', 'display:none');
        $('.BBBDP').attr('style', 'display:none');
    } else if ($(this).val() == 'AppliS') {
        $('.WalLDP').attr('style', 'display:none');
        $('.AppliDP').attr('style', 'display:visible');
        $('.BBBDP').attr('style', 'display:none');
    } else if ($(this).val() == 'BBBS') {
        $('.WalLDP').attr('style', 'display:none');
        $('.AppliDP').attr('style', 'display:none');
        $('.BBBDP').attr('style', 'display:visible');
    }else{
        $('.WalLDP').attr('style', 'display:none');
        $('.AppliDP').attr('style', 'display:none');
        $('.BBBDP').attr('style', 'display:none');
    }
});​

工作演示

于 2012-10-18T06:23:55.200 回答