gpt4 book ai didi

jquery - 在其他函数中中止 Ajax 请求

转载 作者:行者123 更新时间:2023-12-01 05:38:15 25 4
gpt4 key购买 nike

我想中止位于其他函数中的 Ajax 请求示例:

var xhr = false;
$(function(e) {
$(document).on('click', '.menue-button', function(e) {
// Some JS
xhr = $.ajax({
type: "POST",
url: index.php,
//The ajax functions
});
});
});

$(document).on('click', '#progress-abort', function() {
xhr.abort();
});

调试器说:

Uncaught TypeError: Cannot read property 'abort' of undefined

我知道为什么,但我不知道如何解决这个问题

最佳答案

它尝试了以下操作:

var xhr = false;
$(function(e) {
$(document).on('click', '.menue-button', function(e) {
// Some JS
xhr = $.ajax({
type: "POST",
url: index.php,
//The ajax functions
});
$(document).on('click', '#progress-abort1', function() {
xhr.abort();
});

$(document).on('click', '#progress-abort', function() {
$('#progress-abort1').trigger('click');
});
});

但是'#progress-abort1不会触发。怎么了?

关于jquery - 在其他函数中中止 Ajax 请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32586611/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com