我同时在多个输入上添加了自动完成功能,因此编写了一个处理函数作为源。我想在我的处理函数中使用原点的 id 属性(触发操作的输入)。但似乎在自动完成中没有直接引用它......
$('#inputForm #supplier, #inputForm #label').autocomplete({
source: function(request, response) {
$.post("autocomplete.php", {id: ???, term: request.term}, success);
}
});
有什么线索吗?