美文网首页
js判断字符串类型的数字

js判断字符串类型的数字

作者: 爱抹茶的小狮子 | 来源:发表于2020-03-04 10:09 被阅读0次
    
    let str = "23"
    
    let n = parseInt(str)
    
    if(!isNaN(n)){
    
        alert("是数字")
    
    }
    
    

    相关文章

      网友评论

          本文标题:js判断字符串类型的数字

          本文链接:https://www.haomeiwen.com/subject/hagplhtx.html