jquery读取cookie值

发布于 2024-12-05 16:44:59 字数 405 浏览 0 评论 0原文

我在 iframe 中调用了一个 php 页面,

我在 cookie 中存储了一些值。我想从该页面读取 cookie 值到其他页面。

我使用 jQuery 来读取 cookie。

var value = $.cookie('artname');

“artname”是 cookie 名称。

但它显示空值,因为cookies路径不同,路径是“/v/abcfile/frontend/”。

但是我试图获取的页面上其他cookies的路径是“/。

我尝试这样做: top.jQuery.cookie('artname'); 它仍然向我展示相同的内容。

我怎样才能得到cookie的值?

I have called one php page inside the iframe

I have stored some values in cookies.I want to read that cookies values from that page to other page.

I used jQuery to read cookie.

var value = $.cookie('artname');

'artname' is the cookie name.

But it displaying null value because cookies path is different,path is "/v/abcfile/frontend/".

But the path for the other cookies on the page i am trying to get is "/.

I tried with this: top.jQuery.cookie('artname');
Its still showing me the same.

how can I get value of cookie?

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

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

发布评论

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

评论(1

遮云壑 2024-12-12 16:44:59

只需使用路径属性

$.cookie("example",  { path: '/' });

http://www.electrictoolbox.com/jquery-cookies/

干杯

just use the path property

$.cookie("example",  { path: '/' });

http://www.electrictoolbox.com/jquery-cookies/

cheers

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