我有一个带网址的ajax调用。只是想知道是否可以将该URL设置为在空白选项卡或窗口中打开。我还不太了解ajax。所以任何帮助,有一些解释,将非常感激。以下是代码。
$.ajax({
url: 'membership/fetchParishionersDetails.php',
method: "POST",
data: {view:view},
type: "json",
success:function(response)
{
var x =JSON.parse(response);
$('.dropdown-menu').html(x.notification);
if(view !='')
localStorage.setItem("noteCount",0);
if(x.unseen_notification >=localStorage.getItem("noteCount")) {
if(x.unseen_notification > localStorage.getItem("noteCount")) {
if(x.unseen_notification>localStorage.getItem("noteCount")) {
var audio = new Audio('membership/sounds/beep1.wav');
audio.play();
}
localStorage.setItem("noteCount",x.unseen_notification);
$('.count').html(x.unseen_notification);
}
}
}
});
我试过这个
url: ('membership/fetchParishionersDetails.php','_blank'),
但它无效
答案 0 :(得分:0)
Ajax调用旨在用作客户端请求机制,而不是用于打开选项卡。您无法在任何窗口中打开AJAX请求,因为它在浏览器中在后台执行