如何使用jQuery停止页面中的所有ajax进程?
如何使用 jQuery 停止页面中的所有 ajax 进程?
How to stop all ajax process in the page using jQuery ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何使用 jQuery 停止页面中的所有 ajax 进程?
How to stop all ajax process in the page using jQuery ?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
终止单个 AJAX 进程的方法是这样的:
声明“x”并初始化 ajax 后,只需将
x
添加到数组中即可。然后您可以循环遍历数组并调用每个项目的.abort()
方法。The way to kill a single AJAX process is this way
After you declare 'x' and initialize the ajax, simply add
x
to an array. Then you can cycle through the array and call each items.abort()
method.您可以保存参考并启动
You can save the reference and fire
您可以按如下方式进行处理。
event.stopPropagation();
You can for a process as follows.
event.stopPropagation();