基本上这是我的代码(Authenticator.jsp):
window.location.replace("Login.html"); // replace method also takes care of history
window.open ("Main.html", "Welcome logged in user");
预期行为:
实际行为:
有解决方案吗?在IE6中发生此行为(我没有检查过IE7和IE8),它在Firefox和Chrome中不会发生
答案 0 :(得分:1)
我认为你应该致电
window.location = "Login.html"
然后将呼叫转移到
window.open ("Main.html", "Welcome logged in user");
进入Login.html页面的onload事件。