好的 - 我知道我是个白痴,但我似乎无法将此表单重定向到我想要的地方:
<form id="post" method="post" action="" name="post" onSubmit="window.location='http://www.website.com/overview'" >
<input type="hidden" name="terms-and-conditions" value="true">
<p class="submit">
<input id="agree" type="submit" value="I Agree" name="agree">
<input type="button" value="I Disagree" onClick="window.location='http://www.website.com'">
</p>
</form>
当按钮类型为“提交”时,它不会在我的PHP页面中重定向。我有一种感觉,我错过了一些明显的东西......
谢谢!
答案 0 :(得分:0)
只是做
<form id="post" method="post" action="http://www.website.com/overview" name="post">