我一直在尝试让以下比较运算符工作。第二个“if”总是执行代码中的下一条语句。我想要的是能够检测到 entryType 或 followupEntryType 何时不等于字符串“Long Term Care” 这是代码......
function getComboB(sel) {
var value = sel.options[sel.selectedIndex].value;
if (value == "Rehab") {
if (!(document.getElementById('entryType').value == "Long Term Care") || !(document.getElementById('followupEntryType').value == "Long Term Care")) {
document.getElementById('followupEntryType').value = "Long Term Care";
alert("short-term rehab code");
return true;
} else {
alert("long-term rehab code");
return true;
}
}
}