Home > Web Front-end > JS Tutorial > Introduction to the use of setDate() method in JavaScript_Basic knowledge

Introduction to the use of setDate() method in JavaScript_Basic knowledge

WBOY
Release: 2016-05-16 15:55:43
Original
1403 people have browsed it

The javascript Date.setDate() method sets a certain day of the month according to local time, on the specified date.
Grammar

Date.setDate( dayValue )
Copy after login

Here are the details of the parameters:

  • dayValue: an integer from 1 to 31, representing a certain day of the month.

Return value:

  • NA

Example:

The second statement below changes from the original value to August 24th.

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

This will produce the following results:

Sun Aug 24 23:30:00 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