js 判断字符串是不是数字
function isNumeric(str) { return /^\d+$/.test(str); } // 使用示例 console.log(isNumeric("123")); // 输出: true console.log(isNumeric("abc")); // 输出: false
posted on 2024-07-27 12:00 品味人生nuiapp 阅读(5) 评论(0) 编辑 收藏 举报
function isNumeric(str) { return /^\d+$/.test(str); } // 使用示例 console.log(isNumeric("123")); // 输出: true console.log(isNumeric("abc")); // 输出: false
posted on 2024-07-27 12:00 品味人生nuiapp 阅读(5) 评论(0) 编辑 收藏 举报