js下载图片

Posted ziyue7575

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js下载图片相关的知识,希望对你有一定的参考价值。

TOC

js下载图片

使用超链接下载图片的时候,会变成预览,使用下面的方法,就可以直接下载图片了

      downUrl(url) {
        // window.open(_this.detail.imgUrl)
        let xmlhttp = new XMLHttpRequest();
        xmlhttp.open("GET", url, true);
        xmlhttp.responseType = "blob";
        xmlhttp.onload = function () {
          if (this.status == 200) {
            const blob = this.response;
            const link = document.createElement(‘a‘);
            link.href = window.URL.createObjectURL(blob);
            link.download = url.substring(url.lastIndexOf("/") + 1, url.length);


            //此写法兼容可火狐浏览器
            document.body.appendChild(link);


            const evt = document.createEvent("MouseEvents");
            evt.initEvent("click", false, false);
            link.dispatchEvent(evt);
            window.URL.revokeObjectURL(link.href)
            document.body.removeChild(link);
          }
          ;
        }
        xmlhttp.send();
      }




以上是关于js下载图片的主要内容,如果未能解决你的问题,请参考以下文章

图片展示js特效

JS 实现图片直接下载示例代码

js或者jquery直接下载网页上的图片代码

js 获取图片并下载到本地

Node.js 使用爬虫批量下载网络图片到本地

Node.js umei图片批量下载Node.js爬虫1.00