Using OR operator in a jquery if statement
问题 I need to use the OR operator in a jQuery if statement to filter out 10 states. My code works wile only excluding one state, but fails when i try to include multiple states. Is there a correct way to do this? Code I am am using : if ((state != 10) || (state != 15) || (state != 19) || (state != 22) || (state != 33) || (state != 39) || (state != 47) || (state != 48) || (state != 49) || (state != 51)) return true; Thanks 回答1: Think about what if ((state != 10) || (state != 15) || (state != 19) |