我正在使用jQuery Autocomplete,但我需要它可以编辑。我的意思是,如果列表中没有值,我需要捕获它们输入的值。使用上面链接中的示例,用户可能看不到他们的选择,例如C#,并且会键入他们的语言。我在默认行为中发现的是,如果在列表中找不到该值,则会清除用户响应。
我添加了以下代码:
options: {
allowUserDefined: false
},
和
var self = this,
**options = this.options,**
和
if (!valid && !options.allowUserDefined) {
// remove invalid value, as it didn't match anything
$(this).val("");
select.val("");
input.data("autocomplete").term = "";
return false;
}
防止响应被清除。而这些变化确实有效。但由于在列表中找不到C#,因此没有选定的选项可以返回。
如何让代码返回输入字段中输入的内容?在调试代码时,特别是在change
事件中,input.val()包含输入的文本,这就是我需要的。我只是无法弄清楚如何访问这个值。
谢谢。
这是我完整的js文件:
(function ($) {
$.widget("ui.combobox", {
options: {
allowUserDefined: false
},
_create: function () {
if (this.options.allowUserDefined === null) {
this.options.allowUserDefined = false;
}
var self = this,
options = this.options,
select = this.element.hide(),
selected = select.children(":selected"),
value = selected.val() ? selected.text() : "";
var input = this.input = $("<input>")
.insertAfter(select)
.val(value)
.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;
self._trigger("selected", event, {
item: ui.item.option
});
},
change: function (event, ui) {
if (!ui.item) {
var matcher = new RegExp("^" + $.ui.autocomplete.escapeRegex($(this).val()) + "$", "i"),
valid = false;
select.children("option").each(function () {
if ($(this).text().match(matcher)) {
this.selected = valid = true;
return false;
}
});
if (!valid && !options.allowUserDefined) {
// remove invalid value, as it didn't match anything
$(this).val("");
select.val("");
input.data("autocomplete").term = "";
return false;
}
}
}
})
.addClass("ui-widget ui-widget-content ui-corner-left");
input.data("autocomplete")._renderItem = function (ul, item) {
return $("<li></li>")
.data("item.autocomplete", item)
.append("<a>" + item.label + "</a>")
.appendTo(ul);
};
this.button = $("<button type='button'> </button>")
.attr("tabIndex", -1)
.attr("title", "Show All Items")
.insertAfter(input)
.button({
icons: {
primary: "ui-icon-triangle-1-s"
},
text: false
})
.removeClass("ui-corner-all")
.addClass("ui-corner-right ui-button-icon")
.click(function () {
// close if already visible
if (input.autocomplete("widget").is(":visible")) {
input.autocomplete("close");
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();
});
},
destroy: function () {
this.input.remove();
this.button.remove();
this.element.show();
$.Widget.prototype.destroy.call(this);
}
});
})(jQuery);
更新
使用Darkajax的代码(我比我想出的更喜欢严格的选项),我可以通过这样做获得输入框的值:
var valu = $("#combobox").parent().children()[1].value;
答案 0 :(得分:5)
使用jQuery UI自动完成组合框时我自己做的就是声明这样的组合框小工具:
(function( $ ) {
$.widget( "ui.combobox", {
// default options
options: {
strict: false
},
_create: function() {
var self = this,
select = this.element.hide(),
selected = select.children( ":selected" ),
value = selected.val() ? selected.text() : "",
strict = this.options.strict;
var input = this.input = $( "<input>" )
.insertAfter( select )
.val( value )
.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;
self._trigger( "selected", event, {
item: ui.item.option
});
},
autocomplete : function(value) {
this.element.val(value);
this.input.val(value);
},
change: function( event, ui ) {
if ( !ui.item ) {
var matcher = new RegExp( "^" + $.ui.autocomplete.escapeRegex( $(this).val() ) + "$", "i" ),
valid = false;
select.children( "option" ).each(function() {
if ( this.value.match( matcher ) ) {
this.selected = valid = true;
return false;
}
});
if ( !valid ) {
// if strict is true, then unmatched values are not allowed
if ( strict ) {
// remove invalid value, as it didn't match anything
$( this ).val( "" );
select.val( "" );
}
return false;
}
}
}
})
.addClass( "ui-widget ui-widget-content ui-corner-left" );
input.data( "autocomplete" )._renderItem = function( ul, item ) {
return $( "<li></li>" )
.data( "item.autocomplete", item )
.append( "<a>" + item.label + "</a>" )
.appendTo( ul );
};
this.button = $( "<button type=\"button\" class=combo_button> </button>" )
.attr( "tabIndex", -1 )
.attr( "title", "Show All Items" )
.insertAfter( input )
.button({
icons: {
primary: "ui-icon-triangle-1-s"
},
text: false
})
.removeClass( "ui-corner-all" )
.addClass( "ui-corner-right ui-button-icon" )
.click(function() {
// close if already visible
if ( input.autocomplete( "widget" ).is( ":visible" ) ) {
input.autocomplete( "close" );
return;
}
// pass empty string as value to search for, displaying all results
input.autocomplete( "search", "" );
input.focus();
});
}
});
})( jQuery );
这会使其接受其他选项作为有效值,您只需使用:
$("#combobox").combobox({
strict: true
});
使其成为默认设置,以防万一你需要它。
答案 1 :(得分:0)
在你的
中source: function(request, response)
{
您可以访问request.term
=键入的内容。
答案 2 :(得分:0)
使用darkajax中的清洁解决方案,以及以下代码行:
var valu = $("#combobox").parent().children()[1].value;
我能够获得组合框的价值。
答案 3 :(得分:0)
我不知道这对任何人都有帮助,但是通过给输入命名,值已提交....(我删除了删除无效条目的代码,当然)
var input = this.input = $("<input name='somehthing'>")