js点击按钮下载图片、word、pdf、excel等

html:

url为要下载源文件的地址。

 

Javascript

function download(src) {
    var $a = document.createElement('a');
    $a.setAttribute("href", src);
    $a.setAttribute("download", "");
    var evObj = document.createEvent('MouseEvents');
    evObj.initMouseEvent( 'click', true, true, window, 0, 0, 0, 0, 0, false, false, true, false, 0, null);
    $a.dispatchEvent(evObj);
}

 

你可能感兴趣的:(JavaScript)