0

ホストのルートに 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 を作成します

4

1 に答える 1