美文网首页
纯JS生成并下载各种文本文件或图片

纯JS生成并下载各种文本文件或图片

作者: 青青河边草_小确幸 | 来源:发表于2018-12-07 10:16 被阅读0次

本文转载自https://juejin.im/post/5bd1b0aa6fb9a05d2c43f004

var text=“想要下载的文本,字符串等资源”;
var funDownload=function(content,filename){
    var _a=document.createElement('a');
    _a.download=filename;
    _a.style.display=none;
    var blob=new Blob([content]);
    _a.href=URL.createObjectURL(blob);
    document.body.appendChild(_a);
    _a.click();
    document.body.removeChild(_a);
}
if('download' in document.createElement('a')){
    funDownload(text,'text.txt');       //text.txt是你将要下载的资源的名称
}else{
    alert('浏览器不支持');
}

相关文章

网友评论

      本文标题:纯JS生成并下载各种文本文件或图片

      本文链接:https://www.haomeiwen.com/subject/jswzcqtx.html