js中excel模板下載

部分代碼:

<button class="btn" type="button" id="templateDownload">模板下載</button>

模板放在當前項目中

js代碼:

var loaded = false;
$("#templateDownload").click(function () {
    if (!loaded) {
        $("<iframe id='downloadExcel' src='' width='0' height='0' frameborder='0'/>").appendTo("body");
        loaded = true;
    }
    $("#downloadExcel").attr("src", "${ctx}/download/excel/highPrice.xls?t=" + new Date().getTime());
});

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章