16
var mdflag;
var count = 0;

document.addEventListener("mousedown",mdown,false);
    document.addEventListener("mouseup",mup,false);
}


function mdown()
{
    mdflag=true;
    while(mdflag)
    document.getElementById("testdiv").innerHTML = count++;

}
function mup()
{
    mdflag = false;
}

我想在鼠标按下时运行代码,我找不到任何建议我可以做的事情 while(mousedown) 所以我尝试为 mousedown 制作一个标志,该标志在鼠标按下时重置但是我相信 while 循环是什么导致我陷入无限循环。

有什么建议可以帮助我实现目标吗?

4

3 回答 3

18

您必须在某个合理的时间间隔内调用 mousedown 活动。我会这样做:

var mousedownID = -1;  //Global ID of mouse down interval
function mousedown(event) {
  if(mousedownID==-1)  //Prevent multimple loops!
     mousedownID = setInterval(whilemousedown, 100 /*execute every 100ms*/);


}
function mouseup(event) {
   if(mousedownID!=-1) {  //Only stop if exists
     clearInterval(mousedownID);
     mousedownID=-1;
   }

}
function whilemousedown() {
   /*here put your code*/
}
//Assign events
document.addEventListener("mousedown", mousedown);
document.addEventListener("mouseup", mouseup);
//Also clear the interval when user leaves the window with mouse
document.addEventListener("mouseout", mouseup);
于 2013-03-19T16:42:06.710 回答
6

您不能这样做,因为您的函数必须在处理另一个事件之前结束,但是您可以重复调用一个函数,直到鼠标启动:

var timer;
document.addEventListener("mousedown", function(){
     timer=setInterval(function(){
          document.getElementById("testdiv").innerHTML = count++;
     }, 100); // the above code is executed every 100 ms
});
document.addEventListener("mouseup", function(){
    if (timer) clearInterval(timer)
});
于 2013-03-19T16:38:13.720 回答
-1

您需要使用 setInterval 来执行您的功能并使用 clearInternal 来停止

let interval = setInterval(function(){
    console.log("executing...");
}, 0);


document.addEventListener("mouseup", function(){
    clearInterval(interval); 
    console.log('End'); 
});
于 2021-01-28T01:39:11.300 回答