我有一個問題,使這項工作:的Javascript如果不相等或不等於
status_ = 'Not Contacted'
if (!(status_ == "Contacted") || (status_ == "Not Contacted") || (status_ == "Not Sure")) {
console.log('didnt match: '+status_)} else{console.log('matched: '+status_)}
它返回 - didnt match: Not Contacted
,但如果我改變status_ = 'Contacted'
我得到matched: Contacted
我在做什麼錯?
「錯」是什麼意思? '(status_ ==「Not Contacted」)'這個條件匹配。 – zerkms
不僅適用於第一個條件 – adeneo
您遇到了什麼問題,代碼是否正常工作。 – Sheerforce