JQuery Cookie 在 Chrome 上不起作用

发布于 2024-12-12 05:52:47 字数 839 浏览 1 评论 0原文

我正在运行这段代码,

<html>
    <head>
        <title>D</title>
        <script type="text/javascript" src="jQuery.js"></script>
        <script type="text/javascript" src="Cookie.js"></script>
        <script type="text/javascript">
            $(document).ready( function() {
                $.cookie("d", "1") ;
            }) ;
        </script>
    </head>

    <body>
            <script type="text/javascript">
                alert( $.cookie("d") ) ;
            </script>
    </body>
</html>

它在 Firefox、IE 上显示“1”,但在 chrome 中显示“null”。知道为什么吗?我正在使用 http://plugins.jquery.com 的最新 jQuery 和 cookie 插件/files/jquery.cookie.js.txt

I'm running this code,

<html>
    <head>
        <title>D</title>
        <script type="text/javascript" src="jQuery.js"></script>
        <script type="text/javascript" src="Cookie.js"></script>
        <script type="text/javascript">
            $(document).ready( function() {
                $.cookie("d", "1") ;
            }) ;
        </script>
    </head>

    <body>
            <script type="text/javascript">
                alert( $.cookie("d") ) ;
            </script>
    </body>
</html>

It's showing '1' on Firefox, IE, but 'null' in chrome. Any idea why? I'm using latest jQuery and cookie plugin from http://plugins.jquery.com/files/jquery.cookie.js.txt

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

芯好空 2024-12-19 05:52:47

Chrome 不支持本地 cookie,除非您使用 --enable-file-cookies 标志启动它。您可以在此处阅读相关讨论

*Chrome 确实如此如果您直接使用本地IP地址(127.0.0.1),则支持cookie。所以在本地主机的情况下,这可能是一个更简单的解决方法。

Chrome doesn't support cookies for locals unless you start it with the --enable-file-cookies flag. You can read a discussion about it at here

*Chrome does support cookies if you use the local IP address (127.0.0.1) directly. so in the localhost case, that could be an easier workaround.

给不了的爱 2024-12-19 05:52:47

JQuery Cookie 在 Chrome 浏览器中不起作用。因此,今天经过几个小时的工作后,我找到了一个使用 javascript Storage API 来完成此任务的解决方案。您可以查看此帖子了解详细信息。

The JQuery Cookie does not work in Chrome Browser. So, today after hours of work I found a solution to use javascript Storage API to accomplish this. You can check This Post to know details.

緦唸λ蓇 2024-12-19 05:52:47

可以使用浏览器存储来代替 Cookie。我喜欢浏览器本地商店

Browser store can be used in stead of Cookies. I like browser local store

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文