Get latest news and Web Designing tutoria

Wednesday, 3 June 2015

Javascript Switch Statements

Sometimes, you'll have more than one value to check for your variables. You can do the checking with a lot of if ... else statements. Or you can use something called a switch statement. Here's an example:
var age = 17;
switch (age) {
case 17:
document.write("under 18");
break;
case 24:

document.write("over 18");
break;
default:
document.write("can't tell");
break;
}
In this example, we've set up a variable called age. We've then stored a value of 17 in the age variable. The switch statement examines what this value is. If it's the case that age hold a value of 17 then its code gets executed. The break keyword is for escaping the switch statement. If you miss it out Javascript will continue downwards and assume all your other cases are true, thus executing the rest of the case code. If none of your cases apply, a default value can be added.But note the syntax for the switch statement. The word switch is lowercase. After this, you have a pair of round brackets. Inside the round brackets you type a variable name or add a condition to test. This will be evaluated to either true or false, depending on which case matches. Javascript will look at your list of cases and try to find a match. If it finds one, it executes that code. If it doesn't find one then the default option is executed. Note where all the curly brackets and colons are. You have a pair of curly brackets for the entire switch statement. You have a colon after each case.
However, switch statements in Javascript are not very useful as they don't allow you to test a range of values very easily, or at all. If you were checking for age ranges you want to check things like 18 to 30, 31 to 50, etc. Javascript switch statements don't allow you to do this, so you'd have to have one case for each age - a lot of cases, in other words. They can be useful in limited situations, though, so they're worth knowing about.

Related Posts:

  • Checkboxes The final function we need is for the checkbox. You can have 1 or more checkboxes on a form. We only have 1, so checking it is fairly straightforward. If you have more than checkbox, though, you do the testing in exactly the… Read More
  • Dropdown Lists The code to check the dropdown list is more or less the same as for radio buttons. Here it is: The only difference is in the IF Statement. Between the round brackets we have the following: document.frmOne.hear[i].select… Read More
  • Validating the HTML form The only thing left to do is to return to the validate function. After all the other four functions have been executed, the four variables will either be true or false. We only want to send the form if all four variables are… Read More
  • Javascript Form Validation - the email function We'll start with the function that checks the email address text box. We'll only check if the text box has had anything typed into it. Checking for a correct email address is notoriously difficult, so we're just trying to k… Read More
  • Radio Buttons Checking radio buttons on a form is a little trickier. You have to loop through each button, testing for a value of checked, which means it was selected. Only one radio button in a group can be selected, so if you find… Read More

0 comments:

Post a Comment