如何检查HTML表单中是否有输入字段。 我尝试这样的代码:
if(document.getElementById('fieldID') != 'null') {
alert('Some alert');
}
但这不起作用。我该怎么办?
答案 0 :(得分:1)
Null不应该有引号,因为它不是字符串,而是绝对值。使用此:
if(document.getElementById('fieldID') != null){
alert('Some alert');
}