javascriptのクッキーオブジェクト
5549 ワード
なぜCookieフォルダにSessionを保存するCookieファイルが見えないですか?
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<script type="text/javascript">
var today=new Date();
var expireDay=new Date();
var msPerMonth=24*60*60*1000*31;
expireDay.setTime(today.getTime()+msPerMonth);
document.cookie="name=liujl;expires="+expireDay.toGMTString();
document.writeln("cookie ");
document.writeln(" :"+document.cookie);
document.writeln(" :"+expireDay.toGMTString());
</script>
</body>
</html>