From 6ffbcebf947c5891e611d701af92baf444d27aa5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=AF=E7=AB=8B?= Date: Sun, 27 Jun 2021 20:28:52 +0800 Subject: [PATCH] Update admin.js --- public/static/admin.js | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/public/static/admin.js b/public/static/admin.js index bbd64aff7..2d9b9e53a 100644 --- a/public/static/admin.js +++ b/public/static/admin.js @@ -463,13 +463,12 @@ $(function () { }; /*! 表单验证入口 */ this.check = function (form, callable) { - $(form).attr("novalidate", "novalidate").find(that.tags).map(function () { - this.bindEventMethod = function () { - that.checkInput(this); - }; - for (var e in that.checkEvent) if (that.checkEvent[e] === true) { - $(this).off(e, this.bindEventMethod).on(e, this.bindEventMethod); - } + $(form).attr('novalidate', 'novalidate').find(that.tags).map(function (idx, input) { + (function (evt) { + for (var e in that.checkEvent) if (that.checkEvent[e]) $(input).off(e, evt).on(e, evt); + })(function () { + that.checkInput(input); + }); }); $(form).bind("submit", function (event) { if (that.checkAllInput() && typeof callable === 'function') {