Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

อะไรคือฟังก์ชันที่สั้นที่สุดในการอ่านคุกกี้ตามชื่อใน JavaScript?


นี่คือวิธีที่ดีที่สุดในการอ่านคุกกี้ตามชื่อใน JavaScript ต่อไปนี้เป็นฟังก์ชัน −

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);
   }
}