我网站上的下载图像按钮不起作用。
这是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);
}
});
});