jquery读取cookie值
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需使用路径属性
http://www.electrictoolbox.com/jquery-cookies/
干杯
just use the path property
http://www.electrictoolbox.com/jquery-cookies/
cheers