取消谷歌ajax api中的请求
我正在使用“new google.search.WebSearch();”做小型 AJAX 搜索栏来自 Google AJAX Api。
如何取消正在进行的 ajax 请求?
做一个
var xhr;
function Something() {
xhr.stop();
xhr = $.get ....
}
我通常在 jQuery 中
: Google websearch 对象的等价物是什么?
I'm doing small AJAX searchbar with "new google.search.WebSearch();" from Google AJAX Api.
How do i can cancel an ongoing ajax request?
I usually do a:
var xhr;
function Something() {
xhr.stop();
xhr = $.get ....
}
in jQuery.
What is the equavalent for the Google websearch object?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道 Google AJAX API,但此页面显示了一个名为
.cancelSearch()
的方法。也许就是您正在寻找的东西。http://code.google.com/apis/ajaxsearch/documentation/参考.html#_intro_GSearchControl
I don't know the Google AJAX API, but this page shows a method called
.cancelSearch()
. Maybe what you're looking for.http://code.google.com/apis/ajaxsearch/documentation/reference.html#_intro_GSearchControl