我在ajax事件服務器端創建一個word文檔,並作爲響應如果沒有錯誤我想推它下載。是否有可能與jQuery的Ajax?我的代碼看起來在這一刻,因爲它遵循jquery ajax響應下載文件
$.ajax({
type: "POST",
url: 'docsx.php',
data: $("#edit_form").serialize(), // serializes the form's elements.
success: function(data)
{
**here should be fired the download** // show response from the php script.
},
error:function(){
alert('Es gibt ein Fehler bei Daten übetragung!');
}
});
你可以只重定向到一個網頁,會強制下載(通過設置適當的頭)。另一種選擇是使用[this](http://filamentgroup.com/lab/jquery_plugin_for_requesting_ajax_like_file_downloads/),但不幸的是它還沒準備好。看起來他們還在試驗它。 –
感謝您的反饋,我以前一直在看你的建議鏈接,但沒有在我的案件工作,但是你的第一個建議是做我想做的。非常感謝 – kakuki