//158 0000 0000 格式化方法function phoneFormat(value){    value = value.replace(/\s*/g, "");    var result = [];    for(var i = 0; i < value.length; i++){        if (i==3||i==7){            // console.log(value.charAt(i));            result.push(" " + value.charAt(i));                 }else{            result.push(value.charAt(i));        }    }    return result.join("");}