我有一个 for 循环。
在循环中有一个 if 语句,如果发现下拉列表为空,则添加错误 css 样式。
我的问题是循环只循环3次,然后在它应该循环15次时停止......我不知道为什么。
单独的循环可以正常工作,但是当我添加 if 语句时,它就变得很奇怪。
帮助。
这是我的循环
//add all the id's in an array. array size is 15
var drop_down=["Cars_chassis","Cars_model".....];
for (var i = 0; i < drop_down.length; i++) {
//check if dropdown is empty
if(document.getElementById(drop_down[i]).value == ""){
//change the color of border
$('#'+drop_down[i]).css('border-color' , '#dddcdc');
}
}