请尝试用JavaScript代码创建Cookie,并设置其名称=全名,值= id并在一个小时内到期,但是当我检查浏览器(chrome)时,我发现它不存在,因此关于我的代码的任何想法问题
function cookie_set(fullname, id) {
var now = new Date();
now.setTime(now.getTime() + 1 * 3600 * 1000);
//document.cookie = "name=" + fullname + "=" + id;
document.cookie = fullname + "=" + id + "; expires=" + now.toUTCString + "; path=/";
}
答案 0 :(得分:1)
您的代码中有一个错误:
document.cookie = fullname + "=" + id + "; expires=" + now.toUTCString() + "; path=/";