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();
}
}
});