2016-07-11 14 views
-2

下記のコードに5分のクッキーを追加する必要があります。広告が閉じると、5分後に再び表示され、現在はすべてのページの負荷に表示されますこのフローティング部門にクッキーを追加する必要があります

<div id="catfish" style="position:fixed; bottom:0; left:0; right:0; text-align:center; z-index:5000; width: 468px; margin: 0px auto;"> 
<div style="position:absolute; margin-bottom:0px; z-index:15;"> 
<a href="Javascript:void(0);"onclick="document.getElementById('catfish').style.display='none'"><img src="" alt="close" height="20"></img></a> 
</div> 
<div> 

</div> 
+0

誰もがそれを残してくれてありがとう – user3273412

答えて

0

たとえば! あなたのニーズに合わせて作り直してください。

var cookieName = "checkss"; 
    var cookieValue = "true"; 
    var сookieExist = 1000*60*5; 
    var checkCookie = document.cookie; 
    if(checkCookie.indexOf(cookieName)==-1) { 
     function start() { 
      $("#test_infa").modal({ 
       close: true 
      }); 
     } 
     $(document).ready(function(){ 
      setTimeout(start, 5000); 
     }); 

     var exp = new Date(); 
     exp.setTime(exp.getTime() + сookieExist); 
     document.cookie = cookieName + "=" + cookieValue + "; expires=" + exp.toGMTString(); 
    }