0

我正在使用 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 });
    }

});

JSFiddle

4

2 回答 2

2

在 Chrome 中打开控制台,您会看到问题所在:

Resource interpreted as Script but transferred with MIME type text/plain:
"https://raw.github.com/carhartl/jquery-cookie/master/jquery.cookie.js".
Refused to execute script from 'https://raw.github.com/carhartl/jquery-cookie/master/jquery.cookie.js' because its MIME type ('text/plain') is not executable, and strict MIME type checking is enabled.

您直接从 github 嵌入脚本,但 github 使用 MIME 类型“text/plain”而不是“text/javascript”来提供它。

于 2013-08-07T07:54:15.750 回答
0

JQuery Cookie 在 Chrome 浏览器中不起作用。因此,今天经过数小时的分析,我找到了使用 javascript Storage API 来完成此任务的解决方案。我只是想在这里分享我的发现。您可以检查JQuery Cookie not working on chrome以了解详细信息。

于 2014-07-06T15:53:27.380 回答