JQuery Cookie 在 Chrome 上不起作用
我正在运行这段代码,
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
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.
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.
可以使用浏览器存储来代替 Cookie。我喜欢浏览器本地商店
Browser store can be used in stead of Cookies. I like browser local store