嗨,我在5秒钟后使用开放式花式盒子为新访客提供服务。我想要打开弹出窗口不是在时间之后,而是在打开他访问的第三(例如)页面之后。我该怎么做?
我的超时解决方案如下:
setTimeout(function () {
$.fancybox({
autoSize: false,
height: 'auto',
minHeight: 300,
width: '50%',
href: '/index/some-page',
type: 'iframe',
afterLoad: function (current) {
current.content.contents().find('.not-interest').click(function (e) {
e.preventDefault();
Cookies.set('not-interest', true, {expires: 14});
$.fancybox.close();
});
current.content.contents().find('.some-form').submit(function () {
var today = new Date();
var date = new Date('Jan 1, 2038');
var oneDay = 24 * 60 * 60 * 1000;
var diffDays = Math.abs((date.getTime() - today.getTime()) / oneDay);
Cookies.set('interest', true, {expires: diffDays});
});
},
beforeClose: function () {
Cookies.set('close', true, {expires: 14});
}
});
}, 5000);
我的想法是,统计用户的访问页面并将其保存到Cookie。这是好方法吗?