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

JavaScript를 사용하여 홈페이지 전용 쿠키를 설정하는 방법은 무엇입니까?


홈페이지에 대한 쿠키를 설정하려면 홈페이지 자체에 페이지를 추가하십시오.

다음 코드를 실행하여 쿠키를 설정할 수 있습니다.

라이브 데모

<html>
   <head>
      <script>
         <!--
            function WriteCookie() {
               if( document.myform.customer.value == "" ){
                  alert("Enter some value!");
                  return;
               }
               cookievalue= escape(document.myform.customer.value) + ";";

               var myPath = window.location.pathname;
               var address = query.split("/");

               if ((address[address.length - 1]).toLowerCase() == "home.html") {
                  document.cookie = "name=" + cookievalue;
                  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>