gpt4 book ai didi

javascript - 使用 ajax 在 url 后面附加 #

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

我想添加哈希url,例如:表单返回成功后使用Ajax在url中添加#completed:

submitHandler:function(form) {
$(form).ajaxSubmit({
target:'.result',
beforeSubmit:function(){
$('.form-footer').addClass('progress');
},
error:function(){
$('.form-footer').removeClass('progress');
},
success:function(){
$('.form-footer').removeClass('progress');
$('.alert-success').show().delay(10000).fadeOut();
$('.field').removeClass("state-error, state-success");
if( $('.alert-error').length == 0){
$('#smart-form').resetForm();
//reloadCaptcha();
}
}
});
}

谢谢

最佳答案

您可以在成功回调中添加:

window.location.hash = '#completed';

并且在错误中您可以添加类似的

如果你想让 1 说 url 被调用并且不关心成功失败,你可以放入 finally 方法

关于javascript - 使用 ajax 在 url 后面附加 #,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23678887/

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