我已经在这个站点和其他站点之间搜索了高低(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();
});
});