私はJavascriptが初めてで、名前、姓、年齢で構成されるログインフォームのフォーム検証を実装しようとしています。
実際の検証は正常に機能していますが、検証が満たされない場合、両方のエラーが出力され続けます。両方ではなく、一度に 1 つのエラーのみを出力できるかどうかを知りたいです。
function Validation() {
// Basic form validation for the login form (ensures first name is entered ensures age is of required number [5-100])
// Declare the textfields as three seperate variables x, y, z
var x = document.forms["loginform"]["age"].value;
var y = document.forms["loginform"]["firstname"].value;
var z = document.forms["loginform"]["surname"].value;
// Call an error if an input has no entered value (empty)
if (x == null || x == "" || y == null || y == "" || z == null || z == "")
{
alert("Please enter all required information!");
}
// Call an error if x (age) contains a non-numeral character or if the number is less than 5/more than 100
if (x < 5 || x > 100 || !x.match(/^\d+$/))
{
alert("Age must be between 5-100 and only contain numerical value(s).");
}
}
事前に感謝します。