Home > Web Front-end > JS Tutorial > JavaScript method setMilliseconds() to set the millisecond field of a specified time

JavaScript method setMilliseconds() to set the millisecond field of a specified time

黄舟
Release: 2017-11-07 13:23:18
Original
1719 people have browsed it

Definition and usage

The setMilliseconds() method is used to set the milliseconds field of the specified time.

Syntax

dateObject.setMilliseconds(millisec)
Copy after login
ParametersDescription
millisec Required. Used to set the dateObject millisecond field, this parameter is an integer between 0 ~ 999.

Return value

Adjusted date expressed in milliseconds.

Tips and Notes:

Note: If one of the above parameters is specified using a one-digit number, then JavaScript will be included in the result Add one or two leading zeros.

Note: This method is always used in conjunction with a Date object.

Example

In this example, we will set the millisecond field of the current time to 001 through the setMilliseconds() method:

<script type="text/javascript">

var d = new Date()
d.setMilliseconds(1)
document.write(d)

</script>
Copy after login

Output:

Tue Nov 07 2017 13:22:52 GMT+0800 (中国标准时间)
Copy after login

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.
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

The above is the detailed content of JavaScript method setMilliseconds() to set the millisecond field of a specified time. For more information, please follow other related articles on the PHP Chinese website!

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