jQuery:ajax完整
ajaxComplete 是否能够处理页面中调用的任何 ajax 请求,例如 asp.net ajax,还是仅适用于使用 jQuery 发起的 ajax 请求。我尝试像这样处理 Telerik 的 RadGrid 但没有成功
$('#RadGrid1').ajaxComplete(function() {
});
Is ajaxComplete able to handle any ajax requests invoked in page, for example asp.net ajax or is it only for ajax requests originating using jQuery. I tried to handle Telerik's RadGrid like this without success
$('#RadGrid1').ajaxComplete(function() {
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信只有 jQuery ajax 方法才会触发这个。不过,您可以在任何其他 ajax 函数的“成功”事件上手动调用它。
I believe it is only the jQuery ajax methods that will trigger this. You can manually call it on the "success" event of any other ajax function though.