热搜:NVER node 开发 php

jQuery设置的本地Cookie 别的页面能访问吗?_html/css_WEB-ITnose

2024-11-06 17:50:01
jQuery设置的本地Cookie 别的页面能访问吗?_html/css_WEB-ITnose

用的是html +jquery做的一个小东西  需要实现页面间的数据共享


回复讨论(解决方案)

设置path路径为/是可以的。但必须是同一个域名下的Cookie才可以

作用域下的页面都可以访问
http://www.cnblogs.com/chenqianpeng/archive/2012/04/24/2468642.html

用的是html +jquery做的一个小东西  需要实现页面间的数据共享



 if($('#materialId').val()!=0){
var materialId = $('#materialId').val();
    $.cookie("A",AK[materialId][0],{path:'/'});//把A的值cookie中
    $.cookie("K",AK[materialId][1],{path:'/'});
alert($.cookie("A"));
//alert(); 
提示的值是那个undefined  不知道哪里出错   我完全没有用到服务器