具有自动完成功能的 jquery 点击事件
我正在尝试使用 jquery 自动完成功能附加一个简单的单击事件。这是我使用的代码:
$("#term").autocomplete({
source: function( request, response ) {
$.ajax({
url: 'http://query.yahooapis.com/v1/public/yql',
dataType: 'JSONP',
data: {
format: 'json',
q: 'select * from xml where url="http://google.com/complete/search?output=toolbar&q=' + escape(request.term) + '"'
},
success: function(data) {
response($.map(data.query.results.toplevel.CompleteSuggestion, function(item) {
return { label: item.suggestion.data, value: item.suggestion.data };
}));
}
});
}
});
我希望能够单击列表项,然后触发另一个请求(ea 填充另一个列表)我想使用 jquery click 事件来执行此操作,到目前为止还不好,请参阅此 链接
Im trying to attach a simple click event with jquery autocomplete. This is the code Im using:
$("#term").autocomplete({
source: function( request, response ) {
$.ajax({
url: 'http://query.yahooapis.com/v1/public/yql',
dataType: 'JSONP',
data: {
format: 'json',
q: 'select * from xml where url="http://google.com/complete/search?output=toolbar&q=' + escape(request.term) + '"'
},
success: function(data) {
response($.map(data.query.results.toplevel.CompleteSuggestion, function(item) {
return { label: item.suggestion.data, value: item.suggestion.data };
}));
}
});
}
});
I would like to be able to click the list item which will then trigger another request (ea populated another list) I want to do this with the jquery click event, so far no good, see this LINK
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在自动完成中使用 select 事件。
或者你可以按照你的方式这样做
查看它的工作这里
You can use select event in autocomplete.
Or else you can do like this in your way
See its working here