判斷輸入的字母是否為數字*/ var isDigit = function(c){ return '0' <= c && c <= '9'; }; /* 檢查輸入是否為手機號碼。 input: 一個數字和"-" 混合的字串回傳值: ...
確定! 回上一頁