获取对 jquery 自动完成中调用对象的引用
我想使用带有 2 个控件的 jquery ui 自动完成插件,所以我有这个:
$("#From, #To").autocomplete({
source: function (request, response) {
$.ajax({
url: "http://example.com/search/" + $(this).val(),
dataType: "jsonp",
data: {
featureClass: "P"
},
success: function (data) {
response($.map(data.autocomplete, function (item) {
return {
label: item.name + " (" + item.id + ")",
value: item.id
}
}));
}
});
}
});
问题是我使用 $(this).val() 获取当前文本框中的文本的 url 参数不起作用,如何我可以以不需要为每个控件重复自动完成代码的方式来执行此操作吗?
谢谢!
I want to use the jquery ui autocomplete plugin with 2 controls, so I have this:
$("#From, #To").autocomplete({
source: function (request, response) {
$.ajax({
url: "http://example.com/search/" + $(this).val(),
dataType: "jsonp",
data: {
featureClass: "P"
},
success: function (data) {
response($.map(data.autocomplete, function (item) {
return {
label: item.name + " (" + item.id + ")",
value: item.id
}
}));
}
});
}
});
The problem is that the url param where I use $(this).val() to get the text in the current textbox doesn't work, how can I do this in a way that I won't need to duplicate the autocomplete code for each control?
thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
this.term
获取要使用的搜索词。您可能还想将其包装在encodeURIComponent()
中,即You can use
this.term
to get the search term that is to be used. You might also want to wrap this inencodeURIComponent()
i.e.