我的代码如下:
<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)
更多信息:
请帮助我,提前谢谢.. :)