[求助] 一个菜鸟问题。难住了两个小时。大家帮帮
用javascript脚本设计题如下:
1.定义变量:var a=prompt("请输入今天星期几(1-7)");
2.使用switch语句,使用document.write(),语句显示当天的安排。
请大家帮帮做做
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>prompt</title>
</head>
<body>
<script>
var a=window.prompt("请输入今天星期几(1-7)","1");
switch(a)
{
case "1":document.write("周一吃饭");break;
case "2":document.write("周二睡觉");break;
case "3":document.write("周三学java");break;
case "4":document.write("周四学.net");break;
case "5":document.write("周五玩实况");break;
case "6":document.write("周六学Ruby");break;
case "7":document.write("周日看电影");break;
}
</script>
</body>
</html>