使用jQuery下载图像的问题

时间:2018-01-31 19:19:04

标签: javascript jquery html5

以下代码在沙盒中运行正常,我可以将其关闭,但在我的机器和浏览器中,使用Chrome它会在下一个标签中打开图像,而不是按照它应该通过点击{{ 1}}

您能告诉我为什么会发生这种情况吗?如何防止它在新页面中打开并且只是下载?



.imgs

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

0 个答案:

没有答案