/** * 检查输入的一串字符是否全部是数字 * 输入:str 字符串 * 返回:true 或 flase; true表示为数字 */function checkNum(str){ return str.match(/\D/) == null;}