ボタンをクリックしてフォームを送信し、別のボタンをクリックする必要がない場合は、フォームフィールドを必須にすることが可能かどうかは疑問でした。送信フォームに応じて別のフォームフィールドが必要です
Exemple:
<form method="post" action="action.php" name="form1">
<input type="text" name="participant_name" /> //required if submit button = save_button
//not required if submit button = cancel_button
<input type="submit" value="save" name="save_button" />
<input type="submit" value="cancel" name="cancel_button" />
</form>
のTHXみんな:)
はfrondendまたはバックエンドでの検証をあなたは必要ですか? – Philipp
@Philipp検証はバックエンドで行われます – Cellendhyll