JS如何检查空字符串和空格

这个问题在这里已经有了答案:

  • 你如何检查JavaScript中的空字符串? 39个答案

  • 正则表达式可以轻松解决这个问题。

    if (/^ *$/.test(value)) {
        //string contains 0+ spaces only
    }
    

    我不确定自己的理解是否正确。 你的意思是:

    if (value == "" || value == " "){
    // do anything
    }
    
    链接地址: http://www.djcxy.com/p/27517.html

    上一篇: JS how to check empty String and Space

    下一篇: How can I check if the input is empty in JavaScript?