例子
代码如下 | 复制代码 |
<script> //判断日期是否大于今天,如isLaterDate("2014-10-1")返回true function isLaterDate(d){ try{ var now = new Date(); var dateArr = d.split("-"); var arrLen = dateArr.length; now.setFullYear(now.getYear(), now.getMonth(), now.getDate()); var checkDate = new Date(); checkDate.setFullYear(dateArr[0], dateArr[1]-1, dateArr[2]); var nowTime = now.getTime(); var checkTime = checkDate.getTime(); if(nowTime < checkTime){ return true; }else{ return false; } }catch(e){return false;} } if((location.href=="/" || location.href=="http://www.111cn.net/")&& isLaterDate("2014-10-1")) {window.open("/include/ad.html","十一的狂欢","height=400,width=400,left=" + (screen.availWidth-400)/2 + ",top=" + (screen.availHeight-400)/2 + ";toolbar=no,menubar=no,scrollbars=no,resizable=no,location=no,status=no");} </script> |
这样到了指定时间区间内就会弹出广告了,当然还有像使用cookie服务器脚本都可以设置,下面看个cookie的方法
代码实现的是每隔24小时弹出一次窗口的代码:
代码如下 | 复制代码 |
function openpopup(){ document.writeln(" <SCRIPT language=JavaScript>"); document.writeln("window.open(’http://www.111cn.net’)"); document.writeln("</script\>"); } function get_cookie(Name) { function ninedns_com(){ |
时间: 2024-10-30 16:41:01