我想使用AJAX下载文件。现在我的代码成功提交后在新标签中打开PDF文件。如何更改我的代码以运行自动下载? 这是我的代码:
$.ajax({
url: '/templates/mywebsite/save.php',
type: 'POST',
data: dataArray,
success: function(response)
{
window.open('/upload/myfile.pdf','_blank');
}
});