html 弹窗代码_js弹窗代码,24小时内只弹出一次

发布于 2022-09-05 12:16:13 字数 3602 浏览 6 评论 0

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>24小时弹窗-k686绿色软件-http://www.k686.com</title>
  6. </head>
  7. <body>
  8. 24小时弹窗-k686绿色软件-http://www.k686.com
  9. <script type="text/javascript">
  10.   function setCookie(name, value, expire) {   
  11.   window.document.cookie = name + "=" + escape(value) + ((expire == null) ? "" : ("; expires=" + expire.toGMTString()));
  12. }
  13. function getCookie(Name) {   
  14.    var search = Name + "=";
  15.    if (window.document.cookie.length > 0) { // if there are any cookies
  16.      offset = window.document.cookie.indexOf(search);
  17.          if (offset != -1) { // if cookie exists
  18.        offset += search.length;          // set index of beginning of value
  19.            end = window.document.cookie.indexOf(";", offset)          // set index of end of cookie value
  20.            if (end == -1)
  21.              end = window.document.cookie.length;
  22.            return unescape(window.document.cookie.substring(offset, end));
  23.      }
  24.    }
  25.    return null;
  26. }
  27. function register(name) {
  28.   var today = new Date();
  29.   var expires = new Date();
  30.   expires.setTime(today.getTime() + 1000*60*60*24);
  31.   setCookie("k686", name, expires);
  32. }
  33. var exitURL="http://www.k686.com"; //广告地址
  34. function openWin() {
  35.   var c = getCookie("k686");
  36.   if (c != null) {
  37.     return;
  38.   }
  39.   register("9abc");
  40.   
  41.   var featureStr="''";
  42.   
  43.     featureStr="'top=0,left=0,width=800,height=600,toolbar=yes, menubar=no, scrollbars=no, resizable=no, location=no, status=no,center:no'";
  44.          
  45.   self.focus();
  46.   
  47.   var ExitWindow = window.open(exitURL);
  48.   
  49.     ExitWindow.focus();
  50.   
  51. }
  52. openWin();
  53. window.focus();
  54. </script>
  55. </body>
  56. </html>

复制代码

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文