以下代码在沙盒中运行正常,我可以将其关闭,但在我的机器和浏览器中,使用Chrome它会在下一个标签中打开图像,而不是按照它应该通过点击{{ 1}}
您能告诉我为什么会发生这种情况吗?如何防止它在新页面中打开并且只是下载?
.imgs

$('section img').each(function (e) {
var $this = $(this);
$('#imageBox').append('<a class="imgs" href="' + $this.attr('src') + '" download>Download</a>');
});
&#13;