链接单击呼叫控制器并打开一个新选项卡-jQuery&ASP.NET MVC

时间:2018-06-21 09:06:54

标签: jquery asp.net asp.net-mvc

我有这样的链接

<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文件。我应该如何修改我的代码来做到这一点?谢谢。

0 个答案:

没有答案