原生JavaScript判断是否为数字类型. function isDigit(value) { var patrn = /^[0-9]*$/; if (patrn.exec(value) == null || value == "") { return ...
確定! 回上一頁