js猜数字小游戏

var any = Math.round(Math.random() * 100);
var temp = 0;
var count=1;
function caishu(){
var data=window.prompt("请输入您要猜的数字:第"+(count++)+"次", temp);
if(data==null){
return false;
}
if(data>100||data<0){
alert("数字必须在0-100之间");
caishu();
}else if(data
alert("小了,请继续");
caishu();
}else if(data>any){
alert("大了,继续");
caishu();
}else if(data==any){
duile();
}
}
function duile(){
var duima=window.confirm("猜对了!是否再来一次?");
count=1;
if(duima==true){
caishu();
}else if(duima==false){
return false;
}
}
caishu();

你可能感兴趣的:(js猜数字小游戏)