首页 新闻 会员 周边

请问怎么实现图片批量下载,chrome可以,但是其他的浏览器有很多弹窗

0
[待解决问题]

function downloadImg(){
var imgs =[];
$('input[name="downloadImg"]:checked').each(function(){
imgs.push($(this).val());
});
console.log(imgs);
imgs.map(function(i){
var a = document.createElement('a');
a.setAttribute('download','');
a.href=i;
document.body.appendChild(a);
a.click();
})
}

子非鱼-java的主页 子非鱼-java | 菜鸟二级 | 园豆:202
提问于:2017-07-06 16:35
< >
分享
清除回答草稿
   您需要登录以后才能回答,未注册用户请先注册