对于history.go(-1),它在铬中将变为-2

时间:2014-07-24 06:34:34

标签: javascript google-chrome

我的代码如下:

<body onload="display()">
--
--
</body>

和display()javascript函数是

function display() {
    if ( openWindow() != null ) {
    goBack(); // Window opened as expected; go back to loading page
}
}

function openWindow()
{
    var newWin = window.open(documentPath, "", "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=800,height=550" );
    return newWin;
}

,流程为1. submitPage,2。historyPage,3。documentLoadPage(已提到正文标记)

我想在加载documentLoadPage后显示hsitoryPage。 以上在Mozilla&amp; amp; IE但不是chrome,在Chrome中它显示的是submitPage而不是historyPage。

Whate在这里修复。我试过几种方法1.返回false语句,2。找到浏览器,如果它的chrome使用history.go(-1),history.go(0)

更多信息:

  • 这里,从historyPage im loading documentLoadPage到historyPage的body标签的载入

  • 加载documentLoadPage后创建弹出窗口,然后将父窗口设置为上一页,即历史记录页

    请帮助我,提前谢谢.. :)

  • 0 个答案:

    没有答案