1

这是我第一次发帖,但一段时间以来我一直在搜索和使用这个网站作为一个很好的参考工具。我的 jquery 知识几乎没有,我一直在为一个交给我的项目快速学习。基本上我希望代码检查 cookie,如果 cookie 在那里不显示 jquery 模式。如果它不存在,则 jquery 模式将显示,然后在用户关闭它后设置 cookie。

到目前为止,这是我尝试拼凑的内容...

<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/jquery-ui.min.js"></script>
<script type="text/javascript" src="/storage/jquery-validation/jquery.cookie.js"></script>
<script>
 $(function() {
 var seen = $.cookie('modal');
 if (seen == null) {
// a workaround for a flaw in the demo system
(http://dev.jqueryui.com/ticket/4375), ignore!
$( "#dialog:ui-dialog" ).dialog( "destroy" );


$( "#dialog-confirm" ).dialog({
      resizable: false,
      height:400,
      width:600,
      modal: true,
  buttons: {
                I agree": function() {
                $( this ).dialog( "close" );
      $.cookie('modal', 'true', { path: '/', expires: 365 });
            },
        },
    });
     }
});
</script>

我希望这有点道理。我感谢任何人可以提供的任何帮助。

4

0 回答 0