为了账号安全,请及时绑定邮箱和手机立即绑定

请问老师,如果,我第一次点击开始,但是我结束的时候想用enter点击,这种情况又该如何判断呢?

正在回答

4 回答

<!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>无标题文档</title>

<style>

*{margin:0; padding:0;}

#title{

  width:400px; 

  height:60px; 

  margin:0 auto; 

  padding-top:30px;

  font-size:24px;

  font-weight:blod;

  line-height:60px;

  text-align:center;

  color:#f00;

 }

#btns{

 width:204px;

 height:30px;

 margin:0 auto;

}

#btns span{

      width:80px;

  height:28px;

  display:block;

  background:#036;

  float:left;

  margin-right:20px;                  /*注意border的宽度和margin的大小*/

  border:1px solid #036;

  border-radius:7px;

  line-height:28px;

  text-align:center;

  color:#fff;

  font-weight:blod;

  font-family:"microsoft yahei";

  font-size:20px;

  cursor:pointer;

     }

</style>

<script>

window.onload = function ()

{

var oTitle = document.getElementById('title');

var oPlay = document.getElementById('play');

var oStop = document.getElementById('stop');

var array = ['iphone6','iWatch','MX4','Canon','iMac','100元充值卡','200元超市购物卡','谢谢参与','苹果笔记本','智能手环'];

var timer = null;

var flag = 0;              //设置一个标志变量

//鼠标点击事件

oPlay.onclick = startMove;            //为什么此处加()不行

oStop.onclick = stopMove;

//键盘事件

document.onkeyup = function (e)

{

var oEvent = e || event;

if(oEvent.keyCode == 13)

{

if(flag == 0)

{

startMove();            //为什么此处非要加()

flag = 1;

}

else

{

stopMove();

flag = 0;

}

}

}

function startMove()

{

if(flag == 0)

{

clearInterval(timer);

timer = setInterval(function (){

var rand = Math.floor(Math.random()*array.length);

oTitle.innerHTML = array[rand];

}, 50);

oPlay.style.background = '#999';

}

flag = 1;

}

function stopMove()

{

if(flag == 1)

{

clearInterval(timer);

   oPlay.style.background = '#036';

}

flag = 0

}

}

</script>

</head> 


<body>

<div id="title">

    开始抽奖啦!

</div>   

<div id="btns">

    <span id="play">开始</span>

    <span id="stop">停止</span>

</div>

</body>

</html>


0 回复 有任何疑惑可以回复我~
#1

yunxiange

将一个函数名赋值给一个事件对象时,不需要加括号,两者都是对象,当然可以赋值;给函数名加括号是执行该函数,如果函数没有返回值则返回undefined
2014-09-14 回复 有任何疑惑可以回复我~

不错不错,讲的很清晰易懂

0 回复 有任何疑惑可以回复我~

把flag=1直接放进playFun()函数里面,把flag=0直接放进stopFun()函数里面,应该就可以解决了

1 回复 有任何疑惑可以回复我~

同学您好,如果是这样的话您还是一样的要得到enter键的键码值的!然后根据这个键码值来结束计时。

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信