我已经为此工作了一段时间,似乎无处可去。基本上,我按类对一堆输入进行了自动完成,但我需要获取特定的输入 id 来构建对象以发布 ajax(我必须对这个项目使用 POST 而不是 GET)。
$(".input_autocomplete").autocomplete({
source: function( request, response ) {
// here is where I get the hash from local storage,
// reference the id and build the object
// tried this.id, $(this).prop('id'), no luck
$.ajax({
url: '/somepath/filename.htm',
contentType: 'application/json',
dataType: 'json',
type: 'POST',
data: JSON.stringify(obj),
success: function(json) {
return {
label: item.label,
value: item.label
}
},
error: function() {
// error handling
}
}); // ajax
} // source
});