无法在提交时重定向表单

时间:2010-10-04 04:33:58

标签: php forms redirect onsubmit

好的 - 我知道我是个白痴,但我似乎无法将此表单重定向到我想要的地方:

    <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页面中重定向。我有一种感觉,我错过了一些明显的东西......

谢谢!

1 个答案:

答案 0 :(得分:0)

只是做

<form id="post" method="post" action="http://www.website.com/overview" name="post">