我试图在 ajax 成功的新选项卡中打开一个链接,但该链接在一个新窗口中打开。如何使用 jquery 或 javascript 在选项卡中而不是在新窗口中强制打开链接。
代码:
$("#A1").click(function (event) {
$.ajax({
type: "POST",
url: "Home.aspx/btnTestProject",
data: "{'preview':'" + inventory + "' }",
contentType: "application/json; charset=utf-8",
datatype: "json",
cache: false,
success: function (response) {
window.open("TestnRun.aspx"); //opens in new window
}
});
window.open("TestnRun.aspx"); //opens in new tab
});