Update admin.js

This commit is contained in:
Anyon 2021-12-15 15:13:20 +08:00
parent f6d354c377
commit b448caac61

View File

@ -487,9 +487,10 @@ $(function () {
return $(ele).data('input-info', $html.css(style).insertAfter(ele)), $html;
};
/*! 表单元素验证 */
this.form.attr({onsubmit: 'return false;', novalidate: 'novalidate', autocomplete: 'off'});
this.form.off(this.evts, this.tags).on(this.evts, this.tags, function () {
that.checkInput(this);
}).attr('novalidate', 'novalidate').data('validate', this).bind("submit", function (evt) {
}).data('validate', this).bind("submit", function (evt) {
evt.button = that.form.find('button[type=submit],button:not([type=button])');
/* 检查所有表单元素是否通过H5的规则验证 */
if (that.checkAllInput() && typeof callable === 'function') {