函数onkeydown上的setInterval

时间:2012-12-20 14:35:44

标签: javascript html5 setinterval

我想执行空格键(键码32)并多次运行setInterval。但现在我只能让空格键工作一次。

我想突破setInterval。当我再次放入空格键时,setInterval应该再次运行。

document.onkeydown = function onkeydown(event) {

  if (event.keyCode == 65) {
    if (PosPlayN >= 150) {
      PosPlayN -= 5;
    }       
  }

  if (event.keyCode == 68) {
    if (PosPlayN <= 200) {
      PosPlayN += 5;
    }
  }

  if (event.keyCode == 32) {

    var jump = setInterval(jumplp, 5);

    function jumplp() {

      if (jumpcheck <= 30) {
        PosPlayN -= 2;
      }

      if (jumpcheck >= 31 && jumpcheck <= 60) {
        PosPlayN += 2;
      }

      if (jumpcheck >= 60) {
        // ----- I want to exit setInterval here -----
      }

      jumpcheck+=1;
    }
  }

  if (event.keyCode == 17) {
    pGo = 0;
  }
}

1 个答案:

答案 0 :(得分:3)

if(jumpcheck >=60){
    clearInterval(jump);
}