window.open("index.php");
不会在同一选项卡中打开新页面,而是在新选项卡中打开它。
我也试过window.open("index.php",'_self')
了,它根本不打开标签。
这是我的代码:
$.ajax({
url: "login.php",
type: 'POST',
data : "username="+name+"&password="+pwd ,
datatype :"text",
async: false,
cache: true,
timeout: 30000,
error: function() {
return true;
},
success: function(msg) {
if(msg == "Validated")
{
alert(msg);
window.open("index.php");
}
if(msg=="Incorrect password")
{
alert(msg);
location.reload();
}
}
});