JavaScript - 下拉列表验证选择

时间:2010-12-13 21:45:55

标签: javascript validation

我有3 dropdowns,我想在JavaScript中检查至少有一个选项,如果没有显示消息。在JavaScript中最简单的方法是什么?

id:dropdown1 id:dropdown2 id:dropdown3

由于

1 个答案:

答案 0 :(得分:1)

//需要确保第一个下拉选项为空,然后......

var dd1 = document.getElementById('dropdown1');
var dd2 = document.getElementById('dropdown2');
var dd3 = document.getElementById('dropdown3');

if (
  (dd1.selectedIndex == 0) && 
  (dd2.selectedIndex == 0) && 
  (dd3.selectedIndex == 0)
) {  
  alert('need to select at least one')
}