我有一个javascript按钮,点击后会调用一个方法。这是实际方法
function setneamOrganizationCookie() {
var cookieValue = test;
var myDate = new Date();
myDate.setMonth(myDate.getMonth() + 12);
document.cookie = "name=" + cookieValue + ";expires=" + myDate + ";domain=.test.com;path=/;";
}
但是,当我单击按钮后检查浏览器时
我看到我有一个cookie“ name = test”,但路径和域为N / A
有任何提示吗?