我正在使用以下链接http://blueimp.github.com/jQuery-File-Upload/中的photoupload 但我想在上传完成后重定向页面。请帮帮我。
答案 0 :(得分: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;
?>
答案 1 :(得分: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";
});
}
});
答案 2 :(得分:0)
成功上传后,请使用此
header ("location: YOUR-PAGE.php");
return;
答案 3 :(得分:0)
在上传完整回调中使用window.location.href = 'new url'
(fileuploaddone
)。有关回调的更多信息,请阅读API。