h5点击下载按钮,下载excel或者word


根据url下载文件的几种方法

1:直接跳转

window.open(img)

2:直接跳转

window.location.href=img

3:生成a链接跳转

       var link = document.createElement('a')
       link.style.display = 'none'
       link.href = img //文件路径
       link.download = name//文件名
       document.head.appendChild(link)
       link.click()
       document.head.removeChild(link)    

4:生成iframe下载

      var iframe = document.createElement('iframe');
          iframe.style.display = 'none';
          iframe.src = "javascript: '<script>location.href=\"" + img + "\"<\/script>'";
          document.getElementsByTagName('body')[0].appendChild(iframe);

5:生成form表单下载

       var form = document.createElement('form');
          console.log(form);
          form.action = img;
          document.getElementsByTagName('body')[0].appendChild(form);
          form.submit();

  


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM