gpt4 book ai didi

jquery - 我如何将 jquery ajaxstart 和 ajaxstop 与 $.post 一起使用?

转载 作者:行者123 更新时间:2023-12-03 22:21:22 24 4
gpt4 key购买 nike

基本上我想显示一个正在加载的 gif...

这是我正在使用的代码:

$("#mail-change input[type=submit]").click(function(event){

$.post('user_settings.php', $("#mail-change").serialize(), function(res) {

$(res).insertBefore(".grey");

}, 'html')

});

最佳答案

$("#loading").ajaxStart(function() {
$(this).show();
}).ajaxStop(function() {
$(this).hide();
});

编辑:

$("#mail-change input[type=submit]").click(function(event){
$("#loading").show()
$.post('user_settings.php', $("#mail-change").serialize(), function(res) {
$(res).insertBefore(".grey");
$("#loading").hide();
}, 'html');
});

或者:

$.ajax({
url : 'user_settings.php',
data: $("#mail-change").serialize(),
beforeSend: function(){
$("#loading").show();
},
complete: function(){
$("#loading").hide();
},
success: function(res) {
$(res).insertBefore(".grey");
}
});

参见:

关于jquery - 我如何将 jquery ajaxstart 和 ajaxstop 与 $.post 一起使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4251379/

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