`
away888
  • 浏览: 26824 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论

Firefox form submit 不能返回上一页

阅读更多
当我用 document.myform.submit() 提交后,来到test2.html页面。尝试返回,但是,在Firefox 5.0不行。连可以返回的状态都没有,如图片红圈处:
但是在IE下,就顺利返回上一页。请问Firefox用FORM submit 提交后,怎么才能有返回上一页的状态?

test1.html
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
<script type="text/javascript">
function hui() {
	alert("book");
document.myform.submit();
}
</script>
</head>
<body>
<form action="../test" method="post" id="myform" name="myform">
<input type="text" value="book">
<a href="#"><span onClick="hui()">Click</span></a>
</form>
</body>
</html>


test2.html
<html>
<head>
</head>
<body>
Test 2 <a href="#" onclick="javascript:window.history.back(); return false;">Back</a>
</body>
</html>
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics