js中设置document.domain='test.com', 我的域名是www.test.com, 结果发现设置完cookie之后, 浏览器查看cookie的domain总是www.test.com, 而不是 test.com
代码:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Title</title>
<script type="application/javascript">
document.domain = 'test.com';
document.cookie = "test1=hello";
console.log(document.domain); //此处正常, 显示的为 test.com
</script>
</head>
<body>
</body>
</html>
但是查看后发现的确没有设置成功
相关分类