function phone(TEL) { var strTemp = /^1[3|4|5|6|7|8|9][0-9]{9}$/; if (strTemp.test(TEL)) { return true; } return false; } ...
確定! 回上一頁