Home > Web Front-end > JS Tutorial > Detailed explanation of the use of setMilliseconds() method in JavaScript_Basic knowledge

Detailed explanation of the use of setMilliseconds() method in JavaScript_Basic knowledge

WBOY
Release: 2016-05-16 15:55:48
Original
1229 people have browsed it

The javascript Date.setMilliseconds() method sets the milliseconds of the specified date according to local time.
Grammar

Date.setMilliseconds(millisecondsValue)
Copy after login

Note: Parameters in brackets are optional

  • millisecondsValue: A number between 0 and 999, representing milliseconds.

If the external expected range specifies a number, the date information of the Date object is updated accordingly. For example, if you specify 1010 the number of seconds is incremented by 1, and 10 will be used for milliseconds.
Return value:

  • NA

Example:

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

Copy after login

This will produce the following results:

Thu Aug 28 23:30:01 UTC+0530 2008 

Copy after login

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template