我想将 cookie 添加到我的模态对话框中,但我不知道如何。我想添加 24 小时的 cookie,有人可以帮忙吗?这是我的模态对话框代码:
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.6/jquery-ui.min.js"></script>
<script type="text/javascript" href="/jquery/jquery.cookies.js"></script>
<script>
$(function() {
// a workaround for a flaw in the demo system (http://dev.jqueryui.com/ticket/4375), ignore!
if ($.cookie('showDialog') == undefined || $.cookie('showDialog') == null || $.cookie('showDialog') != 'false') {
$( "#dialog:ui-dialog" ).dialog( "disable" );
$( ".selector" ).dialog({ hide: "slide" });
$( "#dialog-modal" ).dialog({
width:860,
height: 420,
modal: true,
resizable:false,
draggable:false
});
$.cookie('showDialog', 'false', { expires: 1 }); // set the cookie, with expiry after 1 day
}
});
</script>
<link href="http://xxx.com/jquery/jquery.ui.all.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="dialog-modal" title="Like Us on Facebook">
<div class="fb-like-box" data-href="http://www.facebook.com/xxx" data-width="820" data-height="335" data-show-faces="true" data-stream="false" data-header="false"></div>
</div>