JqueryValidate 修改 为根据ID验证

Posted miye

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JqueryValidate 修改 为根据ID验证相关的知识,希望对你有一定的参考价值。

<!--修改validate根据ID验证  -->
<script type="text/javascript">
if ($.validator) {
    $.validator.prototype.elements = function () {
        var validator = this,
          rulesCache = {};

        // select all valid inputs inside the form (no submit or reset buttons)
        return $(this.currentForm)
        .find("input, select, textarea")
        .not(":submit, :reset, :image, [disabled]")
        .not(this.settings.ignore)
        .filter(function () {
            if (!this.name && validator.settings.debug && window.console) {
                console.error("%o has no name assigned", this);
            }
            //注释这行代码
            // select only the first element for each name, and only those with rules specified
            //if ( this.name in rulesCache || !validator.objectLength($(this).rules()) ) {
            //    return false;
            //}
            rulesCache[this.name] = true;
            return true;
        });
    }
}

</script>


//直接将此代码copy至你要更改验证方式的页面即可

 

以上是关于JqueryValidate 修改 为根据ID验证的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 jQuery validate 验证表单中的所有字段?

使用jquery根据国家/地区验证邮政编码

页面的修改添加,以及验证控件的常见应用

Jquery Plugins Jquery Validate

jQuery Validate - 启用隐藏字段的验证

jQuery Validate - 启用隐藏字段的验证