1

如何编写mouseenter 事件来触发计时器关闭和 mouseleave 事件来触发计时器

如果达到计时器间隔,则网页将刷新。

我已经尝试过但无法解决:

<script>
    $(document).ready(function() {
        var timer;
        function start() {
            timer = setInterval(function(){refresh()}, 5000);
        }
        start();
        $('body').mouseenter(function() {
            clearTimeout(timer);
        });
    }).mouseleave(function(e) {
        var pageX = e.pageX || e.clientX,
            pageY = e.pageY || e.clientY;

        if (pageX <= 0 || pageY <= 0) {
            start();
        }
        else
            clearTimeout(timer);
    });

    function refresh() {
        window.location.reload(true);
    });
</script>

(此代码部分取自此处:https ://stackoverflow.com/a/17714300/2593839 )

4

4 回答 4

2

这段代码应该可以工作:

function refresh() {
   window.location.reload(true);
}

var timer;
function start() {
  timer = setTimeout(function(){refresh()}, 5000);
}

jQuery(document).ready(function() {
  start();

  jQuery('body').mouseenter(function() {
     clearTimeout(timer);
  }).mouseleave(function(e) {
     var pageX = e.pageX || e.clientX,
         pageY = e.pageY || e.clientY;

      if(pageX <= 0 || pageY <= 0) {
        start();
      }else {
        clearTimeout(timer);
      }
  });
});
于 2013-07-18T07:30:27.377 回答
0

就拿

clearInterval(timer);

不是

clearTimeout(timer);
于 2013-07-18T07:16:50.607 回答
0

你可以这样做:

var mytimeout;
$('.box').on('mouseenter', function() {
  if(mytimeout) {
    clearTimeout(mytimeout);
  }

}).on('mouseleave', function() {
  mytimeout = setInterval(function() {
    console.log('tick');
  },1000);    
});

见小提琴:http: //jsfiddle.net/uXrKG/

于 2013-07-18T07:18:12.957 回答
0

这应该适合你。

var mytimeout, i;
i = $('.box').text();

$('.box').on('mouseenter', function() {
    if(mytimeout) {

        clearInterval(mytimeout);
    }

}).on('mouseleave', function() {
    mytimeout = setInterval(function() {
        $('.box').text(i++);
    },1000);    
});

演示

应该使用 clearInterval 而不是 clearTimeout

于 2013-07-18T07:32:35.037 回答