gpt4 book ai didi

javascript - 使用 post 上传 jQuery 文件

转载 作者:行者123 更新时间:2023-11-30 05:31:03 25 4
gpt4 key购买 nike

请问,文件上传成功后,有什么方法可以重定向到其他带有post数据的页面吗?这是我的代码:

    $(function() {
var bar = $('#bar');
var percent = $('#percent');
var status = $('#status');
$('form').ajaxForm({

beforeSend: function() {
var percentVal = '0%';
bar.width(percentVal);
percent.html(percentVal);
},
uploadProgress: function(event, position, total, percentComplete) {
var percentVal = percentComplete + '%';
bar.width(percentVal);
percent.html(percentVal);
},
complete: function(data) {
location.href='upload.php'; //here i need to redirect to selected page with post request
}
});});

最佳答案

认为您需要手动发布和更新 html。大概是这样的。

complete: function(data){
$.post('upload.php', function( data ) {
$('body').html(data)
window.history.pushState({"html": $('html').html() ,"pageTitle": 'title'}, "", 'upload.php');
});
}

关于javascript - 使用 post 上传 jQuery 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27000161/

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