我正在进行密码验证 当密码不匹配时,我无法获得如何验证和显示错误 谁能指导我怎么做?
(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);
答案 0 :(得分:0)
您只需添加
即可 if(o['password'] != o['ConfirmPassword'])
{
alert('password incorrect');
}
在.each()函数之后进行验证