You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
502 B
HTML
18 lines
502 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1.0"
|
|
/>
|
|
<title>cookie</title>
|
|
</head>
|
|
<body>
|
|
<div>我是cookie.test.com:52330设置cookie页面</div>
|
|
</body>
|
|
</html>
|
|
<script>
|
|
document.cookie = 'test-Cookie=我是测试相同顶级域名下不同子域名之间是否能共享cookie; domain=test.com; path=/; SameSite=Strict';
|
|
</script>
|