您好我正在使用带有多个输入标签的 Jquery 自动完成功能。我的问题是我无法在我的自动完成功能中获取当前用户输入值。
这是我的代码
function Call() {
var str = $("#auto").val();
var substr = str.split(',');
$(".inputcatalog").each(function () {
var classes = $(this).attr("class").split(" ");
var id = classes[classes.length - 1];
$this = $(this);
var stype = id;
var srctxt = $this.val();
substr.forEach(function (item) {
if (id == item) {
AutoComplete($this, stype)
}
});
});
}
//我的自动竞争功能
function AutoComplete(object, filter) {
$this = object;
var stype = filter;
var srctxt = $this.val();
$this.autocomplete({
source: function (request, response) {
$.getJSON('/Cataloging/Bib/AutoComplete',
{
stype: stype,
term: $this.val()
}, response);
},
select: function (event, ui) {
// Do something with "ui.item.Id" or "ui.item.Name" or any of the other properties you selected to return from the action
}
});
}
我的期限值为空