Используйте регулярное выражение для проверки количества цифр. Вам понадобятся дополнительные параметры onStepChanging
и onFinishing
для steps()
.
Регулярное выражение /^[0-9]{1,3}$/
будет содержать до 3 цифр, например, 1, 12, 123 будет разрешено, но не 1234 и т. Д. Вы можете написать свою собственную логику c, чтобы предупредить пользователя о необходимости ввода не более 3 цифр (например, текст красного цвета)
Примечание: Это регулярное выражение не допускает пустое значение. Чтобы разрешить пустое значение, измените регулярное выражение на /^[0-9]{0,3}$/
РЕДАКТИРОВАТЬ:
У вас есть 4 шага, и каждый шаг имеет один вход, поэтому мы должны проверить <input>
, который отображается на текущем шаге. Поэтому я добавил индекс текущего шага (currentIndex
в скрипте) в качестве суффикса к классу measureinput
. Вы можете заметить measureinput0, measureinput1, measureinput2, measureinput3
классов для <input>
в каждом <section>
.
Теперь мы можем проверять только текущие видимые <input>
в JavaScript.
$(function() {
$("#wizard").steps({
headerTag: "h2",
bodyTag: "section",
transitionEffect: "slideLeft",
stepsOrientation: "vertical",
enableKeyNavigation: true,
onStepChanging: function(event, currentIndex, newIndex) {
// always clear error message on click of 'next' and 'previous'
clearErrorMessage('measureinput' + currentIndex);
// in case of 'next', newIndex is greater than currentIndex
// so below condition will validate only in case of 'next', not 'previous'
if (currentIndex < newIndex) {
return ValidateField('measureinput' + currentIndex);
}
else {
return true;
}
},
onFinishing: function(event, currentIndex) {
return ValidateField('measureinput' + currentIndex);
},
onFinished: function(event, currentIndex) {
$("#form")[0].submit();
}
});
function ValidateField(classNameOfField) {
var allFields = $("." + classNameOfField);
for (i = 0; i < allFields.length; i++) {
if (/^[0-9]{1,3}$/.test(allFields[i].value)) {
return true;
} else {
//alert('Max 3 digits are allowed!'); // you can write your own logic to warn users
showErrorMessage(classNameOfField);
return false;
}
}
}
function showErrorMessage(classNameOfField)
{
$("."+classNameOfField).css("border-color", "red");
$("#errorMessage").css("display", "block");
}
function clearErrorMessage(classNameOfField)
{
$("."+classNameOfField).css("border-color", "black");
$("#errorMessage").css("display", "none");
}
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-steps/1.1.0/jquery.steps.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<form id="form" name="form" method="post" action="mail/men-measure.php" class="measureinput-inner">
<div class="content">
<div id="wizard">
<h2>Personal Detail</h2>
<section class="tabs-continners">
<input type="name" class="measureinput0" placeholder="Enter Name" id="acrossfront" name="across-front">
<input type="email" class="measureinput0" placeholder="Enter Email" id="acrossfront" name="email">
</section>
<h2>Across Front</h2>
<section class="tabs-continners">
<input type="text" class="measureinput0" placeholder="Enter Measurement In cm" id="acrossfront" name="across-front">
</section>
<h2>Across Back</h2>
<section class="tabs-continners">
<input type="text" class="measureinput1" placeholder="Enter Measurement in cm" id="across-back" name="across-back">
</section>
<h2>Bundi Length</h2>
<section class="tabs-continners">
<input type="text" class="measureinput2" placeholder="Enter Measurement in cm" id="bundi-length" name="bundi-length">
</section>
<h2>Bandhgala Length</h2>
<section class="tabs-continners">
<input type="text" class="measureinput3" placeholder="Enter Measurement In cm" id="bandhgala-length" name="bandhgala-length" required>
</section>
<span id="errorMessage" style="display:none;color:red;"> Maximum 3 digits are allowed</span>
</div>
</div>
</form>