Computer >> Máy Tính >  >> Lập trình >> Javascript

Đặt mili giây cho một ngày cụ thể theo giờ quốc tế.


Phương thức Javascript date setUTCMilliseconds () đặt mili giây cho một ngày cụ thể theo giờ quốc tế.

Sau đây là tham số cho setUTCMilliseconds (milisecondsValue) -

  • Giá trị mili giây - Một số từ 0 đến 999, đại diện cho mili giây.

Ví dụ

Bạn có thể thử chạy mã sau để đặt mili giây cho một ngày cụ thể theo giờ quốc tế -

<html>
   <head>
      <title>JavaScript setUTCMilliseconds Method</title>
   </head>
   <body>
      <script>
         var dt = new Date( "Aug 28, 2008 23:30:00" );
         dt.setUTCMilliseconds( 1200 );
         
         document.write( dt );
      </script>
   </body>
</html>