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>但是查看后发现的确没有设置成功
添加回答
举报
0/150
提交
取消