如何在jquery中进行密码验证

时间:2016-01-28 05:24:08

标签: jquery

我正在进行密码验证 当密码不匹配时,我无法获得如何验证和显示错误 谁能指导我怎么做?

Fiddle

(function ($) {
$.fn.serializeFormJSON = function () {

    var o = {};
    var a = this.serializeArray();
    $.each(a, function () {
        if (o[this.name]) {
            if (!o[this.name].push) {
                o[this.name] = [o[this.name]];
            }
            o[this.name].push(this.value || '');
        } else {
            o[this.name] = this.value || '';
        }
    });
    return o;
};
})(jQuery);

1 个答案:

答案 0 :(得分:0)

您只需添加

即可
 if(o['password'] != o['ConfirmPassword'])
    {
        alert('password incorrect');

    }

在.each()函数之后进行验证

working fiddle