フォームを設定していて、php を処理せずにテストする必要があります...送信の下部で次のパドロに移動するにはどうすればよいですか
<form action="test.html" method="POST" id="acct_access">
...
</form>
フォームを設定していて、php を処理せずにテストする必要があります...送信の下部で次のパドロに移動するにはどうすればよいですか
<form action="test.html" method="POST" id="acct_access">
...
</form>
action
新しいファイルを指すように変更する必要があります。
<form action="access.html" method="POST" id="acct_access">
...
</form>
必要に応じて、php ファイルに、ユーザーをフォローアップ ページに誘導する短いバイパス コードを記述します。
<?php
header( 'Location: access.html' ) ;
?>
クライアント側の検証を行いたい場合 (質問が正しく行われることを願っています)、フォームの 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;
}