我在下面有这样的代码:
$(document).ready(function() {
$("#content2").load("post_rf.php");
// set your initial interval to kick it off
var refreshInterval = setInterval(function() {
$("#content2").load('post_rf.php?randval='+ Math.random());
}, 1500);
// bind an event to mouseout of your DIV to kickstart the interval again
$("#content2").bind("mouseout", function() {
refreshInterval = setInterval(function() {
$("#content2").load('post_rf.php?randval='+ Math.random());
}, 1500);
});
// clear the interval on mouseover of your DIV to stop the refresh
$("#content2").bind("mouseover", function() {
clearInterval(refreshInterval);
});
$.ajaxSetup({
cache: false
});
});
我想做的是什么时候mouseover
,数据保持自动刷新。在这种情况下,如果我将鼠标拖到 的区域mouseover
,它会停止自动刷新,直到我拖出mouseout
的区域mouseover
。
那么是否可以设置onmouseover
,数据将保持自动刷新?