Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

JavaScript를 사용하여 여러 페이지에 대한 쿠키를 설정하는 방법은 무엇입니까?


여러 페이지에 대한 쿠키를 설정하려면 경로를 −

로 설정해야 합니다.
;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>