var _____WB$wombat$assign$function_____ = function(name) {return (self._wb_wombat && self._wb_wombat.local_init && self._wb_wombat.local_init(name)) || self[name]; }; if (!self.__WB_pmw) { self.__WB_pmw = function(obj) { this.__WB_source = obj; return this; } } { let window = _____WB$wombat$assign$function_____("window"); let self = _____WB$wombat$assign$function_____("self"); let document = _____WB$wombat$assign$function_____("document"); let location = _____WB$wombat$assign$function_____("location"); let top = _____WB$wombat$assign$function_____("top"); let parent = _____WB$wombat$assign$function_____("parent"); let frames = _____WB$wombat$assign$function_____("frames"); let opener = _____WB$wombat$assign$function_____("opener"); //config:tipID、onFocus //调用tips.js来做. $k.fn.formValidator = function (config) { var obj = function (selector, config) { this.selector = selector; this.config = $.extendEx({}, this.defConfig, config); this.arr = []; this.result = '';//保存验证结果,success(通过)、error(不通过)、ajax(正在执行ajax验证) } obj.prototype.defConfig = { empty: true, //是否允许为空,必填项验证 onEmpty: '内容不能为空', onFocus: '', onError: '', iconCls: { ok: 'icon-yuanxingxuanzhong', info: 'icon-info', error: 'icon-wrong' } }; obj.prototype.formValidator = function () { var _obj = this; _obj.selector.addClass('kui-formValidator'); _obj.selector[0].formValidator = _obj; _obj.okTips = $k(_obj.selector).tips({ time: 0, theme: 'default', status: 'ok', iconCls: _obj.config.iconCls.ok, leftAdd: _obj.config.leftAdd, topAdd: _obj.config.topAdd });//正确提示. _obj.infoTips = $k(_obj.selector).tips({ content: '', time: 0, theme: 'default', status: 'info', iconCls: _obj.config.iconCls.info, leftAdd: _obj.config.leftAdd, topAdd: _obj.config.topAdd });//信息提示 _obj.errorTips = $k(_obj.selector).tips({ content: '', time: 0, theme: 'default', status: 'error', iconCls: _obj.config.iconCls.error, leftAdd: _obj.config.leftAdd, topAdd: _obj.config.topAdd });//错误提示 _obj.okTips.hide(); _obj.infoTips.hide(); _obj.errorTips.hide(); _obj.selector.focus(function () { _obj.showTips('info', _obj.config.onFocus); }); _obj.selector.blur(function () { _obj.trigger(); }); return _obj; }; obj.prototype.trigger = function () {//真正执行验证操作. var _obj = this; _obj.result = 'success'; //选验证是否必真. var inputValue = $.trim(_obj.selector.val()); if (_obj.config.empty == false) {//必填 if (!inputValue) { _obj.showTips('error', _obj.config.onEmpty) _obj.result = 'error'; _obj.selector.addClass('kui-input-error'); return; } } //长度验证 if (_obj.config.min) { if (inputValue.length < _obj.config.min) { _obj.showTips('error', _obj.config.onErrorMin ? _obj.config.onErrorMin : '最少' + _obj.config.min + '个字') _obj.result = 'error'; _obj.selector.addClass('kui-input-error'); return; } if (inputValue.length > _obj.config.max) { _obj.showTips('error', _obj.config.onErrorMax ? _obj.config.onErrorMax : '最多' + _obj.config.min + '个字') _obj.result = 'error'; _obj.selector.addClass('kui-input-error'); return; } } //var isPass=true var errorMsg =null; $.each(_obj.arr, function (i, o) { if (_obj.result=='error') {//验证失败其中一个,后面的验证就不用执行了. return; } if (o.key == 'regex') { _obj.result = o.value.regex.test(inputValue); if (!_obj.result) { _obj.result = 'error'; errorMsg = o.value.onError; } else { _obj.result = 'success'; } } if (o.key == 'fun') { errorMsg = o.value(inputValue);//通过返回true,不能过返回原因. if (errorMsg != true) { _obj.result = 'error'; } } if (o.key == 'ajax') { _obj.__doAjax(o.value); return; } }); if (_obj.result == 'success') { _obj.showTips('ok'); _obj.selector.removeClass('kui-input-error'); } if (_obj.result == 'error') { _obj.showTips('error', errorMsg); _obj.selector.addClass('kui-input-error'); } } obj.prototype.__doAjax = function (ajax_config) { var _obj = this; ajax_config = $.extendEx({},{ type: 'post', onWait: '正在验证...' },ajax_config); _obj.result = 'ajax'; _obj.showTips('info', ajax_config.onWait); $.ajax({ url: ajax_config.url, type: ajax_config.type,//post、get dataType: ajax_config.dataType, data: {data:_obj.selector.val()}, success: function (result) { var errorMsg = ajax_config.success(result);//判断是否验证通过,通过返回true,不通过返回原因。 if (errorMsg == true) { _obj.showTips('ok'); _obj.result = "success"; _obj.selector.removeClass('kui-input-error'); } else { _obj.showTips('error', errorMsg); _obj.result = 'error'; _obj.selector.addClass('kui-input-error'); } } }); } obj.prototype.showTips = function (status,content) { var _obj = this; _obj.okTips.hide(); _obj.infoTips.hide(); _obj.errorTips.hide(); if (status == 'info') { _obj.infoTips.setContent(content); _obj.infoTips.show(); return; } if (status == 'error') { _obj.errorTips.setContent(content); _obj.errorTips.show(); return; } if (status == 'ok') { _obj.okTips.show(); return; } } obj.prototype.regexValidator = function (regex_config) { var _obj = this; _obj.arr.push({ key: 'regex', value: regex_config }); return _obj; } obj.prototype.functionValidator = function (fun) { var _obj = this; _obj.arr.push({ key: 'fun', value: fun }); return _obj; } obj.prototype.ajaxValidator = function (ajax_config) { var _obj = this; _obj.arr.push({ key: 'ajax', value: ajax_config }); return _obj; } obj.prototype.showPasswordStrength = function () { var _obj = this; function showStrength(_pwd) { var level = passwordStrengthLevel(_pwd); _obj.trigger(); if (_obj.result == 'error') { _obj.selector.removeClass('kui-input-error'); level = 0; } var tipsContent = '
'; tipsContent += '
'; tipsContent += '
'; if (level == 1) { tipsContent += '
'; } if (level == 2) { tipsContent += '
'; } if (level == 3) { tipsContent += '
'; } tipsContent += '
'; tipsContent += '
'; tipsContent += '
'; tipsContent += '
'; tipsContent += _obj.config.onFocus; tipsContent += '
'; _obj.showTips('info', tipsContent); } var _obj = this; _obj.selector.keyup(function () { var pwd = $(this).val(); showStrength(pwd); }); _obj.selector.focus(function () { var pwd = $(this).val(); showStrength(pwd); }); return _obj; } var tagName = this.jo[0].tagName;//tagName都是大写字母 if (tagName == 'INPUT' || tagName == 'TEXTAREA') {//验证单个项.input、textarea var _obj = new obj($(this.jo), config || {}); _obj.formValidator(); return _obj; } //验证整个表单 var childList = this.jo.find('.kui-formValidator'); var validatorList = []; $.each(childList, function (i, o) { var _obj = o.formValidator; validatorList.push(_obj); _obj.trigger(); }); function waitValidateResult() { var isSuccess = true; $.each(validatorList, function (i, _obj) { if (isSuccess == 'ajax') { return; } if (_obj.result == 'error') { isSuccess = false; } if (_obj.result == 'ajax') { isSuccess = 'ajax'; } }); if (isSuccess != 'ajax') { config(isSuccess); } else { var timerID = window.setTimeout(function () { window.clearTimeout(timerID); waitValidateResult(); }, 200); } } waitValidateResult(); } }