следующая кнопка не может функционировать, пока все формы ввода не будут заполнены в нескольких формах - PullRequest
0 голосов
/ 27 апреля 2020

Код JS:

var current_fs, next_fs, previous_fs; //fieldsets
var left, opacity, scale; //fieldset properties which we will animate
var animating; //flag to prevent quick multi-click glitches

$(".next").click(function(){

  if(animating) return false;
  animating = true;

  current_fs = $(this).parent();
  next_fs = $(this).parent().next();

  //activate next step on progressbar using the index of next_fs
  $("#progressbar li").eq($("fieldset").index(next_fs)).addClass("active");

  //show the next fieldset
  next_fs.show(); 

  //hide the current fieldset with style
  current_fs.animate({opacity: 0}, {
    step: function(now, mx) {
    //as the opacity of current_fs reduces to 0 - stored in "now"
    //1. scale current_fs down to 80%
    scale = 1 - (1 - now) * 0.2;
    //2. bring next_fs from the right(50%)
    left = (now * 50)+"%";
    //3. increase opacity of next_fs to 1 as it moves in
    opacity = 1 - now;
    current_fs.css({
      'transform': 'scale('+scale+')',
      'position': 'absolute'
    });
  next_fs.css({'left': left, 'opacity': opacity});
}, 
duration: 800, 
complete: function(){
  current_fs.hide();
  animating = false;
}, 
//this comes from the custom easing plugin
easing: 'easeInOutBack'
});
});

Я использую шаблон https://codepen.io/atakan/pen/gqbIz

Я хочу, когда следующая кнопка ввода формы заполнена во всех , если не следующая кнопка не может функционировать до заполнения всех форм ввода.

Пожалуйста, помогите мне изменить JS в https://codepen.io/atakan/pen/gqbIz. Спасибо

1 Ответ

1 голос
/ 27 апреля 2020

Добавление ниже JS сценария рядом с $ (". Next"). Click (function () { проверит поля формы. Обязательно добавьте атрибут Id в каждый набор полей.

Example: <fieldset id="f1">, <fieldset id="f2"> and <fieldset id="f3">

_p_id = $(this).parent().attr('id');    
$('#msform #'+ _p_id + ' input').each(function(){
    if ($.trim($(this).val()).length == 0){
        isFormValid = false;
        return false;
    }else{
        isFormValid = true;
    }
});
if(!isFormValid){
    return false;
} 
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...