我可以使用javascrit或jquery在mi网站的两个方向之间共享cookie(设置,读取和更新),例如localhost / mysite / path1和localhost / mysite / path2吗?
更新
我试图这样做:
1.-在localhost / mysite / index.php中设置一个带有json数组的cookie:
$.cookie("cart", cart_json, { expires: date}, {path: "/"});
2.-在localhost / mysite / folder / file.php中,用json中的另一个数组读取和修改它:
a = $.cookie("cart")
#manipulate a and save it in new_cart_json
$.cookie("cart", new_cart_json, { expires: date}, {path: "/"});
3.-我回到localhost / mysite / index.php,尝试读取cookie,结果将内容放在cart_json中。我检查了饼干,现在我有两个名为" cart":一个在路径/ mysite中,另一个在路径/ mysite /文件夹中