下载文件的几种方法

1.form表单

html

   

   


js

document.getElementById("sujia").value= ‘123’;

varform =document.getElementById('form');

form.submit();


2.iframe

html


js

$('.download-iframe').on('load',function() {

    consterrorMsg = $(this.contentWindow.document).text();

    if(errorMsg){

        window.setTimeout(function() {

            dialog.error('下载文件失败,请联系管理员!');

        },400);

    }

});

window.open(`/download`,'download');


3. a标签

下载

js

var isSupportDownload = 'download' in document.createElement('a');

下载后文件重命名为b,由于兼容问题可以先尝试,是否支持

你可能感兴趣的:(下载文件的几种方法)