我正在设置一个FORM并需要在不处理php的情况下测试它...如何让提交底部带我到下一个padro
<form action="test.html" method="POST" id="acct_access">
...
</form>
答案 0 :(得分:1)
如果您想进行一些客户端验证(希望我能正确理解),您需要扩展表单的onsubmit事件:
HTML
<form action="test.html" method="POST" id="acct_access" onsubmit="validateForm();">
...
</form>
JavaScript的:
function validateForm () {
//do your validation here
//you need to return 'true' if everything is valid
//or 'false' if something went wrong - this will not make the POST call
return true;
}
答案 1 :(得分:1)
您需要将action
更改为指向新文件。
<form action="access.html" method="POST" id="acct_access">
...
</form>
可选地,在php文件中,写一些短的旁路代码,将用户发送到后续页面。
<?php
header( 'Location: access.html' ) ;
?>