我使用这个脚本数到 10 并显示 0。
但是如何在 mouseenter 事件上从 0 到 10无限计数并在 mouseleave 事件上显示 0 呢?
$('.div').mouseenter(function() {
var cnt = 0;
var counter = setInterval(function() {
if (cnt < 10) {
$('.count').html(cnt);
cnt++;
}
else {
clearInterval(counter);
$('.count').html("0");
}
}, 1000);
});