如何验证填充的输入字段?

时间:2011-11-19 19:44:54

标签: javascript validation

如果我使用

检查表单输入是否已填写
fieldname.value==''

fieldname.value.length<1

或者没关系?如果它确实重要,为什么?

2 个答案:

答案 0 :(得分:3)

我认为这不重要。我会改用

if (!fieldname.value.length)  {
    //it has no length (0)
}

答案 1 :(得分:2)

在大多数情况下,有用的解决方案是检查用户是否提供了不同于空格的文本,因此:

if (fieldname.value.match(/\S/g) !== null) {
    // there is something more than spaces
}