javascript - Problem with logical OR - Stack Overflow

What's wrong with this code:if (Gender != "M" || Gender != "F"){alert("P

What's wrong with this code:

if (Gender != "M" || Gender != "F")
{
    alert("Please enter gender." + Gender);
    document.getElementById("gender").focus();
    return false;                               
}   

What's wrong with this code:

if (Gender != "M" || Gender != "F")
{
    alert("Please enter gender." + Gender);
    document.getElementById("gender").focus();
    return false;                               
}   
Share Improve this question edited Oct 28, 2009 at 13:52 Romain Linsolas 81.7k52 gold badges205 silver badges276 bronze badges asked Oct 28, 2009 at 13:48 RKhRKh 14.2k52 gold badges159 silver badges279 bronze badges
Add a ment  | 

5 Answers 5

Reset to default 13

You probably mean and instead of or:

if (Gender != "M" && Gender != "F")

Read it as:

if (gender is not male OR gender is not female)
{
  //
}

Lets say gender is male: since gender is not female, if evaluates to true.

Now if the gender is female: since it is not male, if again evaluates to true.

You meant to say if gender is neither male nor not female, right? As other people suggested, you have to use AND here.

if (gender is not male AND gender is not female)

//which is
if (Gender != "M" && Gender != "F")

The condition will always be true because if Gender == 'M' then it will be != 'F' and vice-versa.

If you're using a dropdownlist, we assume you have 3 values eg: an empty string, "M" and "F".

In that case I would check for the empty string to simplify logic issues:

if (Gender == "")
{
  alert("Please enter gender." + Gender);
  document.getElementById("gender").focus();    
  return false;                                                               

}

Your conditional, as written, is always true

If Gender is "M", then (Gender != "F") is true.

If Gender is "F", then (Gender != "M") is true.

Therefore, if Gender is either "M" or "F", then (Gender != "M" || Gender != "F") is true, meaning that your code block will always execute.

@Kai is right - you want logical and. In English, you want to ask:

If gender is not M and gender is not F, then ask the user for gender.

Edit: Corrected my reversed results.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743636633a4482261.html

相关推荐

  • javascript - Problem with logical OR - Stack Overflow

    What's wrong with this code:if (Gender != "M" || Gender != "F"){alert("P

    1天前
    20

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信