原生js实现文件上传、下载、封装等实例方法
一 、下载 1、代码 const fileDownloadClick = (obj) => { // 解决兼容 if( document.all ){ obj.click(); } else { let event = document.createEvent(MouseEvents); event.initEvent('click', true, true); obj.dispatchEvent(event); } } const fileDownload = (res,obj) => { // 下载 /* obj :{ userName 下载人
暂无评论