Page 171 - DCAP408_WEB_PROGRAMMING
P. 171

Unit 5: Scripting Language




          5.10 Using Timer in Web Page                                                          Notes

          <xmp>
          <!—CLOCK—>
          <!—  This  part  can  go  in  the  head  of  the  html  file  —>
          <script  language=”JavaScript”  type=”text/javascript”>
          function  sivamtime()  {
              now=new  Date();
              hour=now.getHours();
              min=now.getMinutes();
              sec=now.getSeconds();
          if  (min<=9)  {  min=”0"+min;  }
          if  (sec<=9)  {  sec=”0"+sec;  }
          if  (hour>12)  {  hour=hour-12;  add=”pm”;  }
          else  {  hour=hour;  add=”am”;  }
          if  (hour==12)  {  add=”pm”;  }
          document.timeForm.field.value  =  ((hour<=9)  ?  “0”+hour  :  hour)  +  “:”  +  min
          +  “:”  +  sec  +  “  “  +  add;
          setTimeout(“sivamtime()”,  1000);
          }
          window.onload  =  sivamtime;
          //  —>
          </script>
          <!—  This  goes  into  the  body  of  the  file  wherever  you  want  to  have  the  time
          placed  —>
          <body>
          <form  name=”timeForm”>
            <input  type=text”  name=”field”  value=””  size=”11">
          </form>
          </body>
          </xmp>


          Output
          Top of Form
            12.18.57
          Bottom of Form












                                           LOVELY PROFESSIONAL UNIVERSITY                                   165
   166   167   168   169   170   171   172   173   174   175   176