最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Problem with logical OR - Stack Overflow

programmeradmin1浏览0评论

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.

发布评论

评论列表(0)

  1. 暂无评论