我正在使用 jQuery cookie 插件。它在 Firefox 中运行良好。当我在 Chrome 中打开同一页面时,该值始终设置为未定义。我找不到问题所在。
$(document).ready(function () {
alert($.cookie('Brit_vidests'));
if ($.cookie('Brit_vidests') != '1') {
var id = '#dialog';
var maskHeight = $(document).height();
var maskWidth = $(window).width();
$("body").append('<div id="mask"/>');
$('#mask').css({ 'width': maskWidth, 'height': maskHeight });
$('#mask').fadeIn(1000);
$('#mask').fadeTo("slow", 0.7);
var winH = $(window).height();
var winW = $(window).width();
$(id).css('top', winH / 2 - $(id).height() / 2 - 20);
$(id).css('left', winW / 2 - $(id).width() / 2 - 20);
$(id).fadeIn(2000);
$('.window .close').click(function (e) {
e.preventDefault();
$('#mask').hide();
$('.window').hide();
$('#mask').remove();
});
//if mask is clicked
$('#mask').click(function () {
// $(this).hide();
//$('.window').hide();
//$(this).remove();
});
$.cookie('Brit_vidests', '1', { expires: 60 });
}
});