如何使用JavaScript为多个页面设置Cookie?
要为多个页面设置Cookie,您需要将路径设置为-
;path=/
示例
以上将使您的cookie成为站点cookie。您可以尝试运行以下代码来为多个页面设置Cookie-
<html>
<head>
<script>
<!--
function WriteCookie() {
if( document.myform.customer.value == "" ) {
alert("输入一些值!");
return;
}
cookievalue = escape(document.myform.customer.value) + ";";
document.cookie = "name=" + cookievalue + "; path=/";
document.write ("Setting Cookies : " + "name=" + cookievalue );
}
//-->
</script>
</head>
<body>
<form name = "myform" action = "">
Enter name: <input type="text" name="customer"/>
<input type="button" value="Set Cookie" onclick="WriteCookie();"/>
</form>
</body>
</html>热门推荐
10 感恩跨年祝福语大全简短
11 给侄女的简短祝福语
12 儿童励志寄语简短祝福语
13 爱人出国祝福语简短英文
14 祝福语简短唯美老师的话
15 二零二一年祝福语简短
16 女神节医生祝福语简短
17 小朋友上学祝福语简短
18 亲戚结婚祝福语简短大全