一度讓我頭大到起飛的表單驗證

表單驗證在前端開發中很是很是常見,每次有需求時都不得不百度,匆匆忙忙,沒有積累,也很零散。今天心血來潮想把它整理出來,有些粗糙,後續會繼續修改 ^_^.前端

step1: 首先定義一個Validator表單驗證對象

var Validator = {
    isNoEmpty: function(){}, // 判斷是否爲空
    maxlength: function(){}, //最大長度限制
    isID: function(){}, // 身份證號碼校驗
    isMobile: function(){}, // 手機號校驗
    isChineseName: function(){}, //中文名校驗
    onlyNum: function(){}, // 只能輸入兩位小數
    
};

step2: 在對應的HTML頁面中使用時,只須要建立這個實例對象,調用對應的方法便可,以下:

var validator = Object.create(Validator);
 var isMobile = validator.isMobile(mobile, mobile.val(), '請輸入正確的手機號碼');
 var isID = validator.isID(ID, ID.val(), '請輸入正確的身份證號碼');

step3: 補充Validator對象中的每一個校驗方法

1. 判斷是否爲空

三個參數:
element:當前的DOM節點
value: 當前表單中的值
errMsg: 錯誤提示信息this

isNoEmpty: function (element, value, errMsg) {
    if(value === ''){
      return {
        type: 'isEmpty',
        errMsg: errMsg
      }
    }
    return true;
},

2.最大長度限制

四個參數:
element:當前的DOM節點
value: 當前表單中的值
errMsg: 錯誤提示信息
length:最大長度值code

maxlength: function(element, value, errMsg, length){
    if(value.length > length){
      return {
        type: 'overMaxlength',
        errMsg: errMsg
      }
    }
    return true;
},

3.身份證號碼校驗

三個參數:
element:當前的DOM節點
value: 當前表單中的值
errMsg: 錯誤提示信息對象

isID: function(element, value, errMsg){
    var reg = /^[1-9]\d{5}(18|19|([23]\d))\d{2}((0[1-9])|(10|11|12))(([0-2][1-9])|10|20|30|31)\d{3}[0-9Xx]$/;
    if(!reg.test(value)){
      return {
        type: 'isNoID',
        errMsg: errMsg
      }
    }
    return true;
 },

4.手機號校驗

三個參數:
element:當前的DOM節點
value: 當前表單中的值
errMsg: 錯誤提示信息ip

isMobile: function(element, value, errMsg){
    var reg = /^\\d{11}$/;
    if(!reg.test(value)){
      return {
        type: 'isNoMobile',
        errMsg: errMsg
      }
    }
    return true;
},

5.中文名校驗

三個參數:
element:當前的DOM節點
value: 當前表單中的值
errMsg: 錯誤提示信息element

isChineseName: function(element, value, errMsg){
    var reg = /^([\u4E00-\uFA29]|[\uE7C7-\uE7F3]){2,}$/;
    if(!reg.test(value)){
      return {
        type: 'isNoChineseName',
        errMsg: errMsg
      }
    }
    return true;
},

6.只能輸入最多含有兩位小數的數字

一個參數:
value:當前文本框的值
tips:在調用時可傳入this.value,即this.value = validator.onlyNum(this.value)
這樣就能保證你修改的就是當前文本框對象的值,由於對象屬於引用類型,若是沒有深拷貝,則會修改它自己。開發

onlyNum: function(value){
    var newValue = value;
    newValue = newValue.replace(/[^\d.]/g,''); // 只留下數字和小數點
    newValue = newValue.replace(/\.{2}/g,'.'); // 只保留第一個小數點,清除多餘的
    newValue = newValue.replace('.','$#$').replace(/\./g,'').replace('$#$','.');
    newValue = newValue.replace(/^(\-)*(\d+)\.(\d\d).*$/, '$1$2.$3'); // 只能輸入兩位小數
    if(newValue.indexOf('.')<0 && newValue !=''){
      newValue = parseFloat(newValue); // 保證若是沒有小數點,首位不能是01,02這種金額出現
    }
    return newValue;
  }

強制數字保留兩位小數時,使用toFixed(); 即 var num = parseFloat(num).toFixed()io

繼續更新中……function

相關文章
相關標籤/搜索