我正在尝试实现一个订阅框,它会在您第一次访问该网站时激活。
目前,当您第一次访问该网站时,订阅模式没有加载,我不知道为什么?
<script type="text/javascript">
jQuery.noConflict();
jQuery(document).load(function(){
// load the overlay
if (document.cookie.indexOf('visited=true') == -1) {
var fifteenDays = 1000*60*60*24*15;
var expires = new Date((new Date()).valueOf() + fifteenDays);
document.cookie = "visited=true;expires=" + expires.toUTCString();
jQuery.modal({width:"580px", inline:true, href:"#myModal"});
}
});
</script>
我可以通过单击链接来加载模式,但我需要在用户首次访问时自动弹出。谁能看到我的代码有什么问题?