使用Jquery修复下载图片按钮

时间:2018-09-28 03:43:18

标签: jquery

我网站上的下载图像按钮不起作用。

这是jQuery代码:

$("#download").click(function () {
    var img = $('#link').val();
    $.ajax({
        url: 'img.php',
        type: 'post',
        data: '',
        success: function (data, textStatus, jQxhr) {
            console.log(data);
            document.location.href = "data:image/jpg;base64," + data;
        },
        error: function (jqXhr, textStatus, errorThrown) {
            console.log(errorThrown);
        }
    });
});

0 个答案:

没有答案