没有合适的资源?快使用搜索试试~ 我知道了~
web实验,规定时间内猜数小游戏。web实验,规定时间内猜数小游戏。
资源推荐
资源详情
资源评论
web实验作业:猜数计时游戏 可以运行 2016/6/12
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
</head>
<body>
<input type="button" id="result" name="result" onclick="timedCount()" value="点击开始猜数游戏">
<input type="text" id="time" value="" />
猜1到100之间的数字,您只有五分钟的时间哦,请在下面的输入框中输入:
<input type="text" id="num1" value="" />
<input type="button" id="ensure" value="提交" onclick="ensure()"/>
<script>
//获取文本框内容
var num = Math.floor(Math.random() * 100); //获取随机数
function ensure() {
var nums = document.getElementById("num1");
if (nums.value < num)
{
alert("数字有些小了<br>");
}
else if(nums.value>num)
{
alert("数字有些大了<br>");
}
else{
alert("恭喜答对了");
location.reload();
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
</head>
<body>
<input type="button" id="result" name="result" onclick="timedCount()" value="点击开始猜数游戏">
<input type="text" id="time" value="" />
猜1到100之间的数字,您只有五分钟的时间哦,请在下面的输入框中输入:
<input type="text" id="num1" value="" />
<input type="button" id="ensure" value="提交" onclick="ensure()"/>
<script>
//获取文本框内容
var num = Math.floor(Math.random() * 100); //获取随机数
function ensure() {
var nums = document.getElementById("num1");
if (nums.value < num)
{
alert("数字有些小了<br>");
}
else if(nums.value>num)
{
alert("数字有些大了<br>");
}
else{
alert("恭喜答对了");
location.reload();
资源评论
csdngaoqiong
- 粉丝: 91
- 资源: 11
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功