我有一个自动填充。我想让用户选择从源中选择一个标准功能的项目。但我还想让用户能够键入任何值,当源中匹配0项时,允许用户提交新值。
我一直在尝试以下方法:
$("#rwF1, #rwF2").autocomplete({
source: itemshere,
select: function(event, ui) {
console.log('selection made');
}
}).bind('keydown', function() {
var key = event.keyCode;
if (key == $.ui.keyCode.ENTER || key == $.ui.keyCode.NUMPAD_ENTER) {
console.log('user submitted content');
}
});
对于绑定keydown,问题是即使进行select也总会触发。如果用户未从自动完成中选择项目,如何才能激活绑定keydown?是否有可用于检测的方法是用户选择了一个项目?
感谢
答案 0 :(得分:1)
您可以在每个data-*
的{{1}}属性中存储一个变量,该变量包含一个值,用于指示是否选择了值。
这有一个警告,我将在代码后解释:
input
示例: http://jsfiddle.net/aAD6W/2/
我提到的警告是,如果用户在列表中键入项目而不选择它,则不会触发$("#rwF1, #rwF2").autocomplete({
source: itemshere,
select: function(event, ui) {
$(this).data("selected", true);
}
}).bind("keydown", function(e) {
var $this = $(this);
/* Use e.which, jQuery has normalized it across browsers */
if (e.which === $.ui.keyCode.ENTER ||
e.which === $.ui.keyCode.NUMPAD_ENTER) {
/* If they selected an item... */
if (!$this.data("selected")) {
console.log("new item");
} else {
console.log('existing');
}
} else {
$this.data("selected", false);
}
});
。如果这是一个破坏者,我可以提供一个解决方案(我没有在这里包含它,因为它会增加代码的复杂性)。
答案 1 :(得分:0)
我一直在寻找相同的解决方案 对Jquery自动完成进行了一些更改,它起作用了:) JS文件 -
$(function() {
(function( $ ) {
$.widget( "ui.combobox", {
_create: function() {
var self = this,
select = this.element.hide(),
selected = select.children( ":selected" ),
value = selected.val() ? selected.text() : "";
// Change 1 Added selector instead of actual HTML so you can use this with any input
var input = this.input = $( "#input_id" ) // your input box
.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;
}
});
// Change 2 Commented this block so that user can enter value other than select options
//if ( !valid ) {
// 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 );
$( "#combobox" ).combobox();
$( "#toggle" ).click(function() {
$( "#combobox" ).toggle();
});
});
HTML
<select id="combobox">
<option value="">Select one...</option>
<option value="ActionScript">ActionScript</option>
<option value="AppleScript">AppleScript</option>
<option value="Asp">Asp</option>
<option value="BASIC">BASIC</option>
</select>
不是使用Id
,而是可以将任何css类应用于input
,只需更改js文件中的jquery选择器即可。 (改变1)
Link实际问题。
答案 2 :(得分:0)
你试过keyUp
吗?我们在Job Titles的工作中做了同样的事情,允许从自动完成 OR 中选择一个他们喜欢的内容,然后将其保存到数据库中。这是我们的代码:
var jobs = new Array();
for (var i = 0; i < data.length; i++) { //data comes from AJAX call
jobs[i] = { label: data[i].Value, text: data[i].Text };
}
$("#ContactJobTitleName").autocomplete({
source: jobs,
select: function (event, item) {
$("#ContactJobTitleId").val(item.item.text);
}
});
我们这样做是为了重置选定的职位,但你可以用它来保存你的新项目:7
$("#ContactJobTitleName").keyup(function (e) {
if (e.which == 8 && $(this).val().length == 0) {
$("#ContactJobTitleId").val(0);
}
});