Home > Web Front-end > JS Tutorial > body text

JavaScript method setMinutes() to set the minutes field of a specified time

黄舟
Release: 2017-11-08 09:57:20
Original
1182 people have browsed it

Definition and Usage

The setMinutes() method is used to set the minutes field of the specified time.

Syntax

dateObject.setMinutes(min,sec,millisec)
Copy after login
ParametersDescription
min Required. A value representing minutes, between 0 ~ 59, in local time (the same below)
secOptional. A value representing seconds, between 0 and 59. Before EMCAScript was standardized, this parameter was not supported.
millisecOptional. A value representing milliseconds, between 0 and 999. Prior to EMCAScript standardization, this parameter was not supported

Return value

The adjusted millisecond representation of the date. Before ECMAScript was standardized, this method returned nothing.

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 minutes field of the current time to 01 through the setMinutes() method:

<script type="text/javascript">

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

</script>
Copy after login

Output:

Wed Nov 08 2017 09:01:30 GMT+0800 (中国标准时间)
Copy after login

Example:

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

This will produce the following results:

Thu Aug 28 23:45:00 UTC+0530 2008
Copy after login

The above is the detailed content of JavaScript method setMinutes() to set the minutes 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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!