सभी कुकीज़ को नाम से सूचीबद्ध करने के लिए, एक सरणी में कुकीज़ जोड़े का उपयोग करें। उसके बाद, आपको इस सरणी से कुंजी मान युग्म प्राप्त करने की आवश्यकता है।
उदाहरण
आप सभी कुकीज़ को सूचीबद्ध करने के लिए निम्न कोड चलाने का प्रयास कर सकते हैं
लाइव डेमो
<html>
<head>
<script>
<!--
function ReadCookie() {
var allcookies = document.cookie;
document.write ("All Cookies : " + allcookies );
// Get all the cookies pairs in an array
cookiearray = allcookies.split(';');
// Now take key value pair out of this array
for(var i = 0; i < cookiearray.length; i++) {
name = cookiearray[i].split('=')[0];
value = cookiearray[i].split('=')[1];
document.write ("Key is : " + name + " and Value is : " + value);
}
}
//-->
</script>
</head>
<body>
<form name = "myform" action = "">
<p> click the following button and see the result: </p>
<input type = "button" value = "Get Cookie" onclick = "ReadCookie()"/>
</form>
</body>
</html>