<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>游戏</title>
</head>
<body>
<input type='text' id='txt' />
<input type='button' value='确定' onclick="s()"/>
<script>
var i=Math.ceil(Math.random()*100);
function s(){
var a=document.getElementById("txt").value;
if(a==i){
alert("恭喜你答对了")
}else if(a<i){
alert("太小!")
}else if(a>i){
alert("太大!")
}
for(var y=5;0<y;y--){
if (y<=5) {
alert("还有"+y+"次机会")
}
}
}
</script>
</body>
</html>
//我想让这行代码每次只弹一次 5、4、3、2、1这样,来个大神帮我写一下吧。
for(var y=5;0<y;y--){
if (y<=5) {
alert("还有"+y+"次机会")
}
慕圣7851568
相关分类