js 判断是不是数字类型或字符串类型的数字 123456789101112function isNum(str) { if (typeof str == 'number') { return true; } if (typeof str !== 'string') { return false; } if (str === '') { return false; } return Number(str) == str;} 编辑文章✏