博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
jquery validate name相同通过id验证
阅读量:5143 次
发布时间:2019-06-13

本文共 1473 字,大约阅读时间需要 4 分钟。

$(function () {            if ($.validator) {                //fix: when several input elements shares the same name, but has different id-ies....                $.validator.prototype.elements = function () {                    var validator = this,                        rulesCache = {};                    // select all valid inputs inside the form (no submit or reset buttons)                    // workaround $Query([]).add until http://dev.jquery.com/ticket/2114 is solved                    return $([]).add(this.currentForm.elements)                        .filter(":input")                        .not(":submit, :reset, :image, [disabled]")                        .not(this.settings.ignore)                        .filter(function () {                            var elementIdentification = this.id || this.name;                            !elementIdentification && validator.settings.debug && window.console && console.error("%o has no id nor name assigned", this);                            // select only the first element for each name, and only those with rules specified                            if (elementIdentification in rulesCache || !validator.objectLength($(this).rules()))                                return false;                            rulesCache[elementIdentification] = true;                            return true;                        });                };            }        });

 

转载于:https://www.cnblogs.com/silences/p/7274604.html

你可能感兴趣的文章
Java数据结构和算法(四)--链表
查看>>
JIRA
查看>>
小技巧——直接在目录中输入cmd然后就打开cmd命令窗口
查看>>
深浅拷贝(十四)
查看>>
由级别和性格特征将程序员分类 ---看看你属于哪一种
查看>>
HDU 6370(并查集)
查看>>
BZOJ 1207(dp)
查看>>
PE知识复习之PE的导入表
查看>>
HDU 2076 夹角有多大(题目已修改,注意读题)
查看>>
洛谷P3676 小清新数据结构题(动态点分治)
查看>>
九校联考-DL24凉心模拟Day2T1 锻造(forging)
查看>>
洛谷 P3237 [HNOI2014]米特运输
查看>>
Attributes.Add用途与用法
查看>>
JavaScript面向对象初探——封装和继承
查看>>
L2-001 紧急救援 (dijkstra+dfs回溯路径)
查看>>
javascript 无限分类
查看>>
spring IOC装配Bean(注解方式)
查看>>
[面试算法题]有序列表删除节点-leetcode学习之旅(4)
查看>>
SpringBoot系列五:SpringBoot错误处理(数据验证、处理错误页、全局异常)
查看>>
kubernetes_book
查看>>