我想在主机的根目录上创建 cookie。例如,当我在 www.mydomain.com/test 并设置 cookie 时,它会在根上的 cookie 上创建。我尝试了 jquery cookie 插件和此功能,但它不起作用:
function setCookie2(c_name, value, expiredays) {
$.cookie(c_name, value, {
expires: 1, //expires in 10 days
path: '/' //The value of the path attribute of the cookie
//(default: path of page that created the cookie).
});}
它仍然在 /test 文件夹上创建 cookie