1. 程式人生 > >[JS] jQuery程式碼自動下載檔案

[JS] jQuery程式碼自動下載檔案

原理:使用程式碼建立form,並新增屬性,自動提交–>實現下載檔案

function download(filepath) {
    var url = "http://localhost:8080/DonwloadFileServlet/DownloadFileServlet";

    var form = $("<form></form>").attr("action", url).attr("method", "post");
    form.append($("<input></input>").attr("type", "hidden"
).attr("name", "filepath").attr("value", filepath)); form.appendTo('body').submit().remove(); }