JavaScript でクッキーを作成
2562 ワード
simple_cookie.html
<!DOCTYPE html>
<html lang="ja">
<head>
<meta http-equiv="CONTENT-TYPE" content="text/html; charset=utf-8" />
<title>Cookie</title>
<script type="text/javascript">
document.cookie = "aa='バナナ';SameSite=strict";
document.cookie = "bb='りんご';SameSite=strict";
document.cookie = "cc='みかん';SameSite=strict";
document.cookie = "message='こんにちは';SameSite=strict";
console.log(document.cookie);
</script>
</head>
<body>
<h2>Cookie</h2>
<hr />
Apr/27/2021<br />
</body>
</html>
Author And Source
この問題について(JavaScript でクッキーを作成), 我々は、より多くの情報をここで見つけました https://qiita.com/ekzemplaro/items/bdd24105ca33d8c4380e著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .