一次性弹出框(SweetAlert2)

时间:2016-06-08 18:50:26

标签: javascript jquery cookies sweetalert sweetalert2

我一直在使用一个名为SweetAlert2的新弹出框系统,该系统使用了Java& CSS。它看起来对用户非常有吸引力,我想在我的网站上使用它是出于我正在努力实现的目的。我想创建一个一次性弹出框,一旦关闭,用户将无法再次看到它。我知道很多网站都使用cookies,但我不知道如何在我的脚本中实现这一点。 我希望得到一些支持!

<script>
  swal({
    title: 'Website Maintenance Complete!',
    text: 'For full update log please click <a href="">here</a>',
    type: 'success',
    confirmButtonText: 'Nice!'
  }) 
</script>

上面是我用来在页面加载时显示弹出框的脚本,我只希望它出现一次。如果有人能指出我正确的方向或提供一个很好的解决方案。干杯!

3 个答案:

答案 0 :(得分:2)

您可以使用Cookie来检测回访者:

if (-1 === document.cookie.indexOf('returning=true')) {

  // run only if cookie not found (-1 means not found)

  swal( ... ); // alert
  document.cookie = 'returning=true'; // set cookie
}

答案 1 :(得分:1)

另一种选择是使用localStorage / sessionStorage,如果它只是客户端的东西。否则该cookie将被发送到所有其他请求。

if (!localStorage.returning) {
    // run only if returning not stored in localStorage

    swal( ... ); // alert
    localStorage.returning = true; // set returning
}

答案 2 :(得分:-1)

饼干不是你去的地方, 像@iownthegame建议的那样,你应该使用服务器session对象。 会话将持续到用户离开网站,因此我认为这是正确的方法。 我不知道你的服务器语言是什么,所以我会写一个伪的:

  user login to site
  swal( ... ); // alert will popup
  when the user first login, if(session("visited")!=null){
    server should save a "flag", session("visited")=true
  }
 else{don't show the alert box}
  • 对于Cookie(不是针对该问题),您应该看看here非常有用的插件。

希望这是有帮助的