如果我使用
检查表单输入是否已填写fieldname.value==''
或
fieldname.value.length<1
或者没关系?如果它确实重要,为什么?
答案 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
}