我在 SO 上看到了很多与此相关的其他问题,但没有一个对我有用。我正在尝试提交POST
表单,然后将用户重定向到另一个页面,但我无法同时实现。我可以得到重定向,也可以得到帖子,但不能两者兼而有之。这是我现在拥有的:
<HTML>
<HEAD>
</HEAD>
<BODY>
<script type="text/javascript">
function redirect() {
window.location.href = "http://www.google.com";
}
</script>
<form id="myForm" method=POST name=transferform
action="some_place.php" onsubmit="redirect();">
<input name=gold type=text value="1" size=5>
<input name=recipient type=text value="mypal" size=10>
<input id="myButton" type=submit name=submission value="Send">
</form>
<script type="text/javascript">
window.onload = function(){
document.getElementById('myButton').click();
};
</script>
</BODY>
</HTML>
我究竟做错了什么?