나는 다음과 같은 비교 연산자를 작동 시키려고 노력하고있다. 두 번째 'if'는 항상 코드에서 다음 명령문을 실행합니다. 내가 원하는이 eith 입력 유형 또는 followupEntryType 여기 코드는 ...자바 스크립트 아니요 (a == b) || 아니 (c == b)
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;
}
}
}
'|| '대신'&&'를 사용합니까? –
그런데 들여 쓰기는 코드가 작동하지 않는 이유를 알아 내려고 너무 많은 시간을 할애 할 수있는 확실한 방법입니다. –
코드를 [this] (http://jsbeautifier.org/) –