layui自定義驗證規則 實現傳送非同步請求校驗手機號是否已註冊
阿新 • • 發佈:2018-12-17
//自定義驗證規則 form.verify({ name: function(value, item){//value:表單的值、item:表單的DOM物件 if(!new RegExp(’1+)/.test(value)){ return ‘首尾不能出現下劃線’_’’; } var minlength = KaTeX parse error: Expected 'EOF', got '&' at position 52: … if(minlength &̲& value.length …/.test(value)){ return ‘不能全為數字’; } }, mobile: function(value, item){ var msg; $.ajax({ type: “POST”, url: ‘/user/checkMobile’, async: false, // 使用同步的方法 data: { ‘mobile’:value }, dataType: ‘json’, success: function(result) { if (result.code == 200 && result.data == true) { msg = result.msg; } } }); return msg; } });
a-zA-Z0-9_\u4e00-\u9fa5\s· ↩︎