篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html il costrutto在JavaScript.html中切换案例相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html>
<head>
<title>Il costrutto switch case in JavaScript</title>
<script type="text/javascript">
var segno = "toro";
switch (segno) {
case "ariete":
document.write("<p>Oggi sarai molto fortunato, gioca alla lotteria!</p>");
break;
case "toro":
document.write("<p>Oggi ti andrà tutto male, non uscire di casa!</p>");
break;
case "gemelli":
document.write("<p>Oggi sarà una giornata normale, fai un po' quello che vuoi.</p>");
break;
default:
document.write("<p>Il tuo oroscopo non è pervenuto.</p>");
}
</script>
</head>
<body>
</body>
</html>
以上是关于html il costrutto在JavaScript.html中切换案例的主要内容,如果未能解决你的问题,请参考以下文章