好的 - 我知道我是个白痴,但我似乎无法让这个表单按照我的意愿重定向:
<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 页面中重定向。我有一种感觉,我错过了一些明显的东西......
谢谢!