Switch statement with return value from a prompt dialog : Switch « Statement « JavaScript Tutorial






<html>
<head>
<title>A Simple Page</title>
<script language="JavaScript">
<!--
var yourchoice;
yourchoice = prompt("Choose a number between 1 and 4", "1, 2, 3 or 4")
switch (yourchoice)
{
    case "1":
        alert("You typed in a 1");
        break;
    case "2":
        alert("You typed in a 2");
        break;
    case "3":
        alert("You typed in a 3");
        break;
    case "4":
        alert("You typed in a 4");
        break;
}
//  -->
</script>
</head>
<body>

</body>
</html>








3.5.Switch
3.5.1.Using the switch Structure
3.5.2.Use switch statement to deal with form input value
3.5.3.Switch statement with return value from a prompt dialog
3.5.4.Switch statement with default value
3.5.5.Switch with boolean value
3.5.6.Switch Statement with Integer as the control variable
3.5.7.Switch Statement with calculation