• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录

Angel----部落阁
Xcode10
博客园    首页    新随笔    联系   管理    订阅  订阅
记入cookie一个ip一天只弹一次的弹窗代码-JavaScript实例教程
函数: function Get(){ var Then = new Date() Then.setTime(Then.getTime() + 24*60*60*1000) var cookieString = new String(documents.cookie) var cookieHeader = "Cookie1=" var beginPosition = cookieString.indexOf(cookieHeader) if (beginPosition != -1){ } else { documents.cookie = "Cookie1=POPWIN;expires="+ Then.toGMTString() var focusid=setTimeout("focus();var popAd=window.showModelessDialog(''''http://www.aspxuexi.com/pop.html'''',''''dis'''','''''''');",10

<Script Language="JavaScript">
function setCookie(name, value, expire)
{  
window.document.cookie = name + "=" + escape(value) + ((expire == null) ? "" : ("; expires=" + expire.toGMTString()));
}

function getCookie(Name)
{  
   var search = Name + "=";
   if (window.document.cookie.length > 0)
{ // if there are any cookies
     offset = window.document.cookie.indexOf(search);
  if (offset != -1)
{ // if cookie exists
       offset += search.length;        
// set index of beginning of value
    end = window.document.cookie.indexOf(";", offset)         
// set index of end of cookie value
    if (end == -1)
      end = window.document.cookie.length;
    return unescape(window.document.cookie.substring(offset, end));
     }
   }
   return null;
}

function register(name) {
  var today = new Date();
  var expires = new Date();
  expires.setTime(today.getTime() + 1000*60*60*24);
  setCookie("ttt", name, expires);
}


  var exitURL="http://www.web.com/";//这个地方放置你的HTML代码

function openWin() {

  var c = getCookie("ttt");
  if (c != null) {
    return;
  }
  register("ttt");
 
  var featureStr="''";
 
    featureStr="'top=0,left=0,width=88,height=31,toolbar=yes, menubar=no, scrollbars=no, resizable=no, location=no, status=no,center:no'";//这里是设置你上面的HTML弹出的高度和宽度的

  
  self.focus();
 
  var ExitWindow = window.open(exitURL,'', featureStr);
 
    ExitWindow.focus();
 
}

openWin();
window.focus()
</script>

posted on 2008-01-23 10:02  angelfeather  阅读(1637)  评论(0)    收藏  举报
刷新页面返回顶部
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3