Computer >> 컴퓨터 >  >> 프로그램 작성 >> 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);
   }
}