我有这样的链接
<a href="#" id="mylink">click here</a>
当用户单击链接时,AJAX的工作方式如下:
$('#mylink').click(function(event){
event.preventDefault();
//call the MVC controller so that the controller creates the PDF file.
});
});
我想要做的是,当单击链接并且控制器生成PDF文件时,应在浏览器的新选项卡中打开生成的PDF文件。我应该如何修改我的代码来做到这一点?谢谢。