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
5 Answers
Reset to default 13You 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
评论列表(0条)