js判断字符串类型的数字


let str = "23"

let n = parseInt(str)

if(!isNaN(n)){

    alert("是数字")

}

你可能感兴趣的:(js判断字符串类型的数字)