নাম দ্বারা সমস্ত কুকিজ তালিকাভুক্ত করতে, একটি অ্যারেতে কুকিজ জোড়া ব্যবহার করুন৷ এর পরে, আপনাকে এই অ্যারের থেকে মূল মান জোড়া পেতে হবে।
উদাহরণ
আপনি সমস্ত কুকি তালিকাভুক্ত করতে নিম্নলিখিত কোডটি চালানোর চেষ্টা করতে পারেন
লাইভ ডেমো
<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>