ในการตั้งค่าคุกกี้สำหรับหลายหน้า คุณต้องตั้งค่าเส้นทางเป็น −
;path=/
ตัวอย่าง
ข้างต้นจะทำให้คุกกี้ของคุณไปยังคุกกี้ของไซต์ คุณสามารถลองเรียกใช้รหัสต่อไปนี้เพื่อตั้งค่าคุกกี้สำหรับหลาย ๆ หน้า -
การสาธิตสด
<html>
<head>
<script>
<!--
function WriteCookie() {
if( document.myform.customer.value == "" ) {
alert("Enter some value!");
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>