html 表单隐藏字段和所需验证使用

uwopmtnx  于 2023-02-17  发布在  其他
关注(0)|答案(7)|浏览(159)

我有一个带有隐藏字段的HTML5/Bootstrap表单:style="display: none"
我通过jQuery显示/隐藏它:

show() | hide()

对于字段验证,我使用属性required
我想有我所有的隐藏字段所需的,但当其中一些不出现,然后该形式不能继续提交。
关于如何仅对用户选择显示的字段启用验证,您有什么想法吗?

4c8rllxm

4c8rllxm1#

你可以使用这个技巧:
HTML表单内部:

<input type="text" name="username" required="required" class="input-hidden">

CSS类:

.input-hidden{
        height:0;
        width:0;
        visibility: hidden;
        padding:0;
        margin:0;
        float:right;
}
ha5z0ras

ha5z0ras2#

您可以为html中的所有必需属性添加类名:

<input type="text" name="first_name" class="card-payment-info" required>
<input type="text" name="last_name" class="card-payment-info" required>

并且,通过js事件(如单击),您可以启用或禁用所需的属性:

// disable require:
$(".card-payment-info").attr('required', false);
// enable require
$(".card-payment-info").attr('required', true);
yqkkidmi

yqkkidmi3#

添加一个类.hideable到你的hideable required输入中,然后用下面的函数代替show()和hide():

function show1() {
//Your show() code here
$('.hideable').attr('required', 'required');
}
function hide1() {
//Your hide() code here
$('.hideable').removeAttr('required');
}
7cwmlq89

7cwmlq894#

1 -将表单更改为“novalidate”
2 -捕获提交事件
3 -强制浏览器使用input.reportValidity()分别检查每个可见输入

$('form')
  .attr('novalidate', true)
  .on('submit', function(){
    var isValid = true;
    $('input:visible,select:visible,textarea:visible', this).each(function() {
      // report validity returns validity of input and display error tooltip if needed
      isValid = isValid && this.reportValidity();
      // break each loop if not valid
      return isValid;
    });
    // do not submit if not valid
    return isValid;
  })

我为此制作了一个JQuery工具,它也使用一个变异观察器来自动应用于动态创建的表单。
https://github.com/severinmoussel/VisibilityFormValidator/blob/master/VisibilityFormValidator.js

50pmv0ei

50pmv0ei5#

我为内置的show()hide()编写了一个直接替换,它删除了hide上的required,并将它们恢复到show上(对于所有子元素)。

(function ($) {
    var oldShow = $.fn.show;
    $.fn.show = function () {
        oldShow.apply(this, arguments); //run the original "show" method
        this.find("[notrequired]").prop("required", true).removeAttr("notrequired");
        return this;
    };
    var oldHide = $.fn.hide;
    $.fn.hide = function () {
        oldHide.apply(this, arguments); //run the original "hide" method
        this.find("[required]").prop("required", false).attr("notrequired", "1");
        return this;
    };
})(jQuery);

UPD:在此作为要点发布,以防有人想添加任何内容https://github.com/alex-jitbit/jquery-required-visibility/blob/main/showhide.js

jpfvwuh4

jpfvwuh46#

您可以添加pointer-events: none;,这样用户就不能点击隐藏的元素,并且当您悬停它时光标也不会改变。

taor4pac

taor4pac7#

一种解决方案是编写自己的验证函数:
此函数以默认方式检查所有文本区域和输入,但首先检查输入是否显示。

function validateFormOnlyVisableInputs(elForm) {
    var inputs = elForm.querySelectorAll("input, textarea");
    for (var i = 0; i < inputs.length; i++) {
        console.log(i);
        // display:none inputs ignorieren
        if (inputs[i].offsetParent === null) continue;
        if (!inputs[i].checkValidity()){
            inputs[i].reportValidity();
            return false;
        } 
            
    }
    return true;
}

您必须在submit-button上添加一个eventlistener并调用valdation函数:

// this is out of a class, so you have to remove this...
 // if you have problems you can write me ;)
 this.elSendButton = this.elForm.querySelector("Button");

 this.elSendButton.addEventListener("click", async (e) => {
     e.preventDefault();
     if (validateFormOnlyVisableInputs(this.elForm)) {
        this.elForm.submit();
        ...

相关问题