-2

フォームを設定していて、php を処理せずにテストする必要があります...送信の下部で次のパドロに移動するにはどうすればよいですか

<form action="test.html" method="POST" id="acct_access">
...
</form>
4

2 に答える 2

1

action新しいファイルを指すように変更する必要があります。

<form action="access.html" method="POST" id="acct_access">
...
</form>

必要に応じて、php ファイルに、ユーザーをフォローアップ ページに誘導する短いバイパス コードを記述します。

<?php
    header( 'Location: access.html' ) ;
?> 
于 2012-05-18T19:00:39.640 に答える
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;
}
于 2012-05-18T18:55:59.293 に答える