我正在使用以下链接http://blueimp.github.com/jQuery-File-Upload/中的照片 上传,但我想在上传完成后重定向页面。请帮我。
问问题
1558 次
4 回答
1
这里:
<?php
/* do something with the upload code..... */
/* Redirect browser */
header("Location: http://theos.in/");
/* Make sure that code below does not get executed when we redirect. */
exit;
?>
于 2013-02-12T11:43:10.743 回答
1
var totalUploadCount = $('#fileUpload').length;
var completedCount = 0;
$('#fileupload').fileupload({
dataType: 'json',
done: function (e, data) {
if(completedCount++ == totalUploadCount)
window.location = "http://www.yoururl.com";
});
}
});
于 2013-02-12T11:43:50.520 回答
0
上传成功后,使用这个
header ("location: YOUR-PAGE.php");
return;
于 2013-02-12T11:43:12.113 回答
0
window.location.href = 'new url'
在您的上传完成回调 ( fileuploaddone
) 中使用。阅读API了解更多关于回调的信息。
于 2013-02-12T11:43:58.933 回答