如何实现,触发器,隔一段时间判断鼠标是否在report0上,如果在就alert(1),如果不在就alert(0)
a=$('div[widgetname="REPORT0"]').eq(0);
window.flag=0;
setInterval(function(){
//alert(window.flag);
console.log(window.flag);
},5000);
a.mouseover(function(){window.flag=1;});
a.mouseout(function(){window.flag=0;});
为了体验用的LOG不用alert,要用的话可以把注释解开
https://www.cnblogs.com/enych/p/10086603.html
https://www.runoob.com/try/try.php?filename=tryjquery_event_hover