2

我正在使用webshim(一种 polyfill 解决方案)对表单使用 html5 验证。Webshim 对组复选框进行了验证-您必须至少检查组中的一个:(在这里,搜索data-grouprequired

我进行了改进的验证,其中还包括必须检查的最小和最大框。

两者都可以工作(这是两者的工作小提琴)但是在第一次加载页面后在Firefox(不是 chrome 或 ie11)中,“无效”复选框已经以红色突出显示,如给定小提琴中所示 - 仅使用 firefox。

所以我的问题是:如何防止 Firefox 在页面加载时突出显示那些“无效”?(用户甚至没有机会填写这些字段)

我创建了这个小提琴,所以你可以轻松地尝试:小提琴

谢谢你。

  • 我添加了 Webshim 示例,以表明“问题”(不同的行为)与我的代码相比,与 firefox (图片)不同。

在此处输入图像描述

这是代码:html:

<form action="#">
    <div class="form-row">
        <label>checkboxes with webshim groupRequired:</label>
        <div id="foo5">
            <input name="b" type="checkbox" data-grouprequired="" />
            <input name="b" type="checkbox" />
            <input name="b" type="checkbox" />
            <input name="b" type="checkbox" />
        </div>
    </div>
    <div class="form-row">
        <label>checkboxes with my custom min/max (min:2, max:3) :</label>
        <div id="foo">
            <input id="cb1" class="cb" name="a" data-max="3" data-min="2" type="checkbox" />
            <input id="cb2" class="cb" name="a" data-max="3" data-min="2" type="checkbox" />
            <input id="cb3" class="cb" name="a" data-max="3" data-min="2" type="checkbox" />
            <input id="cb4" class="cb" name="a" data-max="3" data-min="2" type="checkbox" />
        </div>
    </div>
    <div class="form-row">
        <label for="name">Name</label>
        <input class="foo3" type="text" id="name" required="" />
    </div>
    <div class="form-row">
        <input type="submit" />
    </div>
</form>

jQuery:

 //webshim.setOptions
 webshim.setOptions("forms", {
     lazyCustomMessages: true,
     replaceValidationUI: true,
     customDatalist: "auto",
     addValidators: true

 });
 //request the features you need:
 webshim.polyfill('forms');

 $(function () {
     // use all implemented API-features on DOM-ready
     //webshim.activeLang(); //returns current set language

     webshim.activeLang('en'); //set locale to en

     i3 = 0;
     i4 = 0;
     first_arr = {};
     $('.cb').each(function (index, wrap) {
         first_arr[$(this).attr('id')] = ++i3;
         $(this).on('validatevalue', function (e, extra) {
             //failed fix attempt:
             if (false && first_arr[$(this).attr('id')] > 0) {
                 first_arr[$(this).attr('id')] = --i4;
                 return;
             }//end of failed fix attempt
             var elem = e.currentTarget;
             var min = $(e.currentTarget).data('min');
             var max = $(e.currentTarget).data('max');
             var total = $(elem).parents('#foo').find('input:checked').length;

             if (min && min > 0 && max && max > 0 && (total > max || total < min)) {
                 return 'Must select between ' + min + ' to ' + max;
             }
             if (min && min > 0 && total < min) {
                 return "can't select less than " + min;
             }
             if (max && max > 0 && total > max) {
                 return "can't select more than " + max;
             }
             $('.cb').not($(elem)).each(function () {
                 $(this).setCustomValidity("");
             });
         });
     });
 });

我还将添加 Webshim 如何进行他们自己的自定义复选框 grouprequired 验证,他们的 github 文件

addCustomValidityRule('grouprequired', function(elem, val, data){
        var form, name;
        if(!('grouprequired' in data) || elem.type !== 'checkbox' || !(name = elem.name)){return;}

        if(!data.grouprequired.checkboxes){
            data.grouprequired = {};
            data.grouprequired.checkboxes = $( ((form = $.prop(elem, 'form')) && form[name]) || document.getElementsByName(name)).filter('[type="checkbox"]');
            data.grouprequired.checkboxes
                .off('click.groupRequired')
                .on('click.groupRequired', function(){
                    if((data.customMismatchedRule == 'grouprequired') == this.checked){
                        $(elem).trigger('updatevalidation.webshims');
                    }
                })
            ;

            data.grouprequired.checkboxes.not(elem).removeData('grouprequired');
        }

        return !(data.grouprequired.checkboxes.filter(':checked:enabled')[0]);
    }, 'Please check one of these checkboxes.');
4

1 回答 1

1

尝试:

input[type='checkbox']:invalid { box-shadow: none !important; }

参见: https ://hacks.mozilla.org/2010/11/firefox-4-html5-forms/

在页面上查找“:invalid”

您可能还需要:

input[type='checkbox']:required { box-shadow: none !important; }

于 2017-09-25T21:11:44.147 回答