HTML5/JS/jQuery: On invalid input, mark a different (arbitrary) element as invalid

前端 未结 2 514
孤街浪徒
孤街浪徒 2021-01-12 23:13

I am trying to create one of those standard new password forms, where you type the new password once and then a second time to confirm. I would like it so that once you blur

2条回答
  •  暖寄归人
    2021-01-12 23:36

    Список регионов работы для выбора
    Проверка выбора регионов работы (разрешмет отправку формы, если минимум 1 выбран)
    $('.checkbox-group.required input').on('change', function(){ checkRegions(); }); function checkRegions(){ checked_counter = $('.checkbox-group.required :checkbox:checked').length; if(checked_counter > 0){ $('.checkbox-group.required #region_id_2')[0].setCustomValidity(''); }else{ $('.checkbox-group.required #region_id_2')[0].setCustomValidity('Выберите хотябы 1 из вариантов'); } } $(document).ready(function() { checkRegions(); $("form").submit(function(event){ if($('.checkbox-group.required :checkbox:checked').length <= 0 ){ $('.checkbox-group.required #region_id_2').focus(); event.preventDefault(); } }) });

提交回复
热议问题