提示:小白一枚
一、使用步骤
1.代码
代码如下(示例):
<script>
var year = prompt("请输入1995-2006之间的年份");
if (year>2006 || year <1995)
{
alert("您的输入有误,请重新输入");
}
switch(year){
case"1995":
alert("猪");
break;
case"1996":
alert("鼠");
break;
case"1997":
alert("牛");
break;
case"1998":
alert("虎");
break;
case"1999":
alert("兔")
break;
case"2000":
alert("龙");
break;
case"2001":
alert("蛇");
break;
case"2002":
alert("马");
break;
case"2003":
alert("羊");
break;
case"2004":
alert("猴")
break;
case"2005":
alert("鸡");
break;
case"2006":
alert("狗")
break;
}
</script>