我正在研究jQuery函数,我有一个函数在触发mouseover事件时工作,但我的要求是它不应该在鼠标悬停时调用,它应该每隔5秒调用一次,但我无法实现这个。如何解决这个问题?
我已添加了代码段供您参考..
f.children(a.childSelector).each(function(h) {
jQuery(this).mouseover(function(i) {
var j = (a.reflect === true) ? 360 - (g * h) : g * h;
j = jQuery.roundabout_toFloat(j);
if (!jQuery.roundabout_isInFocus(f, j)) {
i.preventDefault();
if (f.data("roundabout").animating === 0) {
f.roundabout_animateAngleToFocus(j)
}
return false
}
})
})
答案 0 :(得分:0)
var repeatFunction = setInterval(function(){
//do something here
}, 5000); //repeats after interval of 5 second (atleast)
答案 1 :(得分:0)
它应该每5秒调用一次
使用setInterval(..)
或使用setTimeout(..)
更灵活地模仿功能。
类似的东西:
f.children(a.childSelector).each(function(h) {
setInterval(function() {
var j = (a.reflect === true) ? 360 - (g * h) : g * h;
j = jQuery.roundabout_toFloat(j);
if (!jQuery.roundabout_isInFocus(f, j)) {
if (f.data("roundabout").animating === 0) {
f.roundabout_animateAngleToFocus(j)
}
}
},5000);
})
答案 2 :(得分:0)
看一下jQuery-Timers:http://archive.plugins.jquery.com/project/timers
$(document).everyTime(1000, "tag", function(i) { // every 1000ms
// do something
}, 200); // 200 times