一个icon的网站,里面有很多的链接去下载不同格式的图片。我现在把所有的链接地址都抓到了Array links中。然后我想forEach 去点击,代码如下:
links.forEach(function(item,index) {
var button = document.createElement("a");
button.href = item;
button.click();
})
这样执行,只能下载到一个图片就停止了,请大家帮忙看一下。 谢谢
PHP中文网2017-04-10 12:48:59
links.forEach(function(item,index) {
var button = document.createElement("a");
button.href = item;
button.target="_blank";
button.click();
})
其实最方便的方法还是迅雷下载。但是证明js思路可用