Update admin.js

This commit is contained in:
邹景立 2021-06-27 20:28:52 +08:00
parent ee72cf52d6
commit 6ffbcebf94

View File

@ -463,13 +463,12 @@ $(function () {
}; };
/*! 表单验证入口 */ /*! 表单验证入口 */
this.check = function (form, callable) { this.check = function (form, callable) {
$(form).attr("novalidate", "novalidate").find(that.tags).map(function () { $(form).attr('novalidate', 'novalidate').find(that.tags).map(function (idx, input) {
this.bindEventMethod = function () { (function (evt) {
that.checkInput(this); for (var e in that.checkEvent) if (that.checkEvent[e]) $(input).off(e, evt).on(e, evt);
}; })(function () {
for (var e in that.checkEvent) if (that.checkEvent[e] === true) { that.checkInput(input);
$(this).off(e, this.bindEventMethod).on(e, this.bindEventMethod); });
}
}); });
$(form).bind("submit", function (event) { $(form).bind("submit", function (event) {
if (that.checkAllInput() && typeof callable === 'function') { if (that.checkAllInput() && typeof callable === 'function') {