最新文章专题视频专题问答1问答10问答100问答1000问答2000关键字专题1关键字专题50关键字专题500关键字专题1500TAG最新视频文章推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37视频文章20视频文章30视频文章40视频文章50视频文章60 视频文章70视频文章80视频文章90视频文章100视频文章120视频文章140 视频2关键字专题关键字专题tag2tag3文章专题文章专题2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章专题3
当前位置: 首页 - 科技 - 知识百科 - 正文

js如何下载图片到本地

来源:动视网 责编:小OO 时间:2020-11-27 19:49:47
文档

js如何下载图片到本地

代码如下:= imgPathURL) {//加载图片document.all.IframeReportImg.src = imgPathURL;}else {//图片直接另存为DoSaveAsIMG();} } function DoSaveAsIMG() {if (document.all.IframeReportImg.src。= ";about:blank";)window.frames[";IframeReportImg";].document.execCommand(";SaveAs";);} //判断是否为ie浏览器 function browserIsIe() {if (总结。
推荐度:
导读代码如下:= imgPathURL) {//加载图片document.all.IframeReportImg.src = imgPathURL;}else {//图片直接另存为DoSaveAsIMG();} } function DoSaveAsIMG() {if (document.all.IframeReportImg.src。= ";about:blank";)window.frames[";IframeReportImg";].document.execCommand(";SaveAs";);} //判断是否为ie浏览器 function browserIsIe() {if (总结。


这篇文章主要为大家详细介绍了js下载图片到本地的代码,具有一定的参考价值,感兴趣的小伙伴们可以参考一下。

代码如下:

$(function(){ 
 //二维码 
 (function(){ 
 var img_src = $('.qr_img')[0].src; 
 if(browserIsIe()){//假如是ie浏览器 
 $('.down_qr').on('click',function(){ 
 img_src = $('.qr_img')[0].src; 
 DownLoadReportIMG(img_src); 
 }); 
 }else{ 
 $('.down_qr').attr('download',img_src); 
 $('.down_qr').attr('href',img_src); 
 
 $('.sutmit_btn').on('click',function(){ 
 $('.down_qr').attr('download',img_src); 
 $('.down_qr').attr('href',img_src); 
 }); 
 } 
 
 })(); 
}); 
 
function DownLoadReportIMG(imgPathURL) { 
 //如果隐藏IFRAME不存在,则添加 
 if (!document.getElementById("IframeReportImg")) 
 $('<iframe style="display:none;" id="IframeReportImg" name="IframeReportImg" onload="DoSaveAsIMG();" width="0" height="0" src="about:blank"></iframe>').appendTo("body"); 
 if (document.all.IframeReportImg.src != imgPathURL) { 
 //加载图片 
 document.all.IframeReportImg.src = imgPathURL; 
 } 
 else { 
 //图片直接另存为 
 DoSaveAsIMG(); 
 } 
} 
function DoSaveAsIMG() { 
 if (document.all.IframeReportImg.src != "about:blank") 
 window.frames["IframeReportImg"].document.execCommand("SaveAs"); 
} 
//判断是否为ie浏览器 
function browserIsIe() { 
 if (!!window.ActiveXObject || "ActiveXObject" in window) 
 return true; 
 else 
 return false; 
}

总结:

javascript没有操作本地文件的权限,只能借助.net,php等后端语言才行的,将图片提交之后,返回个下载地址,window.open就可以自动下载了。

相关推荐:

两种node.js下载图片的方法

js下载以及修改文件名的实例教程

javascript - 用js下载网页?

文档

js如何下载图片到本地

代码如下:= imgPathURL) {//加载图片document.all.IframeReportImg.src = imgPathURL;}else {//图片直接另存为DoSaveAsIMG();} } function DoSaveAsIMG() {if (document.all.IframeReportImg.src。= ";about:blank";)window.frames[";IframeReportImg";].document.execCommand(";SaveAs";);} //判断是否为ie浏览器 function browserIsIe() {if (总结。
推荐度:
标签: 图片 下载 本地
  • 热门焦点

最新推荐

猜你喜欢

热门推荐

专题
Top