我尝试创建类似“退出弹出窗口”的内容,但仅限于驻留在我的页面上的用户不到10秒钟。我想用setInterval:
var counter = 0;
var myInterval = setInterval(function () {
// count
console.log(counter);
// Clear if more than 10 seconds
if ( 10 < counter ) {
console.log('Stop setInterval');
clearInterval(myInterval);
}
++counter;
}, 1000);
if ( 10 > counter ) {
// Simplified exit popup function
$(window).mouseleave(function() {
console.log('Popup');
clearInterval(myInterval);
});
}
代码的第一部分有效,但即使计数器大于10,第二部分也会执行。为什么这不能正常工作?
答案 0 :(得分:0)
不需要柜台。只需bind
页面加载时的事件,unbind
在X秒后使用setTimeout
:
$(window).bind('mouseleave', exitPopup);
setTimeout(function(){
$(window).unbind('mouseleave', exitPopup);
},10000);
function exitPopup(){
alert('Exit popup');
}