我试图通过我的函数在 while 循环中循环我的 if 语句。但它只会命中第一个 if 语句并停止循环。
样本:
while(No.length == 0 || Name.length == 0 || Tel.length == 0
|| Date.length == 0 || Email.length == 0) {
alert("Don't leave blank!");
if (No.length == 0) {
document.getElementById('Nos').style.visibility = 'visible';
return false;
}
if(Name.length == 0) {
document.getElementById('Name').style.visibility = 'visible';
return false;
}
//continues same if statement for rest of the elements variables.
}
它只会转到第一个 if 语句,不会循环遍历它。