至少检查一个空格

时间:2016-07-19 20:52:08

标签: javascript jquery

如何检测输入字段是否至少有一个空格?

这就是我试过的

group

2 个答案:

答案 0 :(得分:2)

您必须将indexOf与-1比较为0

if( $('#myVal').val().indexOf(' ') != -1 ){
     ///has at least a single white space within the string
}

以下是DEMO

答案 1 :(得分:2)

这样做

/\s/.test($('#myVal').val())