This article brings you a detailed introduction (code example) about the Date object in JavaScript. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.
Date instances are used to handle dates and times. The Date object is based on the number of milliseconds since January 1, 1970 (UTC).
JavaScript's Date object provides several UTC time methods, and also provides local time methods accordingly. UTC, which is what we call Greenwich Time, refers to the world time standard in time. The local time refers to the time set by the client computer executing JavaScript.
Date constructor
new Date(); //Sun Jan 06 2019 20:18:04 GMT+0800 (中国标准时间) new Date(value); //value 代表自1970年1月1日00:00:00 (世界标准时间) 起经过的毫秒数。 new Date(000000000000); //Thu Jan 01 1970 08:00:00 GMT+0800 (中国标准时间) new Date(dateString); //dateString表示日期的字符串值。该字符串应该能被 Date.parse() 方法识别 new Date("2019.01.01"); //Tue Jan 01 2019 00:00:00 GMT+0800 (中国标准时间) new Date(year, month[, day[, hour[, minutes[, seconds[, milliseconds]]]]]); //year代表年份的整数值。为了避免2000年问题最好指定4位数的年份; 使用 1998, 而不要用 98. //month代表月份的整数值从0(1月)到11(12月)。 //day代表一个月中的第几天的整数值,从1开始。 //hour代表一天中的小时数的整数值 (24小时制)。 // minute分钟数。 // second秒数。 //millisecond表示时间的毫秒部分的整数值。 new Date(2019,01,01,01,01,01); //Fri Feb 01 2019 01:01:01 GMT+0800 (中国标准时间)
Date method
Date.now()
Returns since 1970 -1-1 00:00:00 UTC (Universal Standard Time) The number of milliseconds that have elapsed so far, type is Number.
Date.now() //1546777708417
Date.parse()
Parse a string representing the date and return the number of milliseconds elapsed from 1970-1-1 00:00:00 .
Date.parse("2019.01.01") //1546272000000 Date.parse('01 Jan 1970 00:00:00 GMT'); //0
Date.UTC()
Accepts the same arguments as the longest form of the constructor (from 2 to 7), and returns values from 1970-01- The number of milliseconds since 01 00:00:00 UTC.
year: A certain year after 1900.
month: An integer between 0 and 11, representing the month.
date: An integer between 1 and 31, indicating the day of the month.
hrs: An integer between 0 and 23 representing hours.
min: An integer between 0 and 59, representing minutes.
sec An integer between 0 and 59 representing seconds.
ms
An integer between 0 and 999, representing milliseconds.
new Date(Date.UTC(2019, 0, 0, 0, 0, 1)); //Mon Dec 31 2018 08:00:01 GMT+0800 (中国标准时间)
Time stamp format conversion
dateFormmat(time) { let date = new Date(time * 1000); //如果date为13位不需要乘1000 let Ye = date.getFullYear() + '/'; let Mo = (date.getMonth() + 1 <p><strong>Date instance-(get)</strong></p><p>All Date instances inherit from Date .prototype. Modifying the prototype object of the Date constructor affects all Date instances. </p><p><strong>Date.getDate()</strong></p><p>Returns a specified date object as the day of the month based on local time. getDate() returns an integer value from 1 to 31</p><pre class="brush:php;toolbar:false">let date = new Date("December 25, 2019 11:11:00"); let day = date.getDate(); console.log(day) //25
Date.getDay()
getDay() returns an integer value: 0 represents Sunday, 1 represents Monday, 2 represents Tuesday, By analogy
Date.getFullYear()
getFullYear() method returns the year of the specified date based on local time.
Date.getMonth()
Returns the month of a specified date object based on local time, as a 0-based value (0 represents the first month of the year).
Date.getHours()
The getHours() method returns the hour of a specified date object based on local time. getHours returns an integer value between 0 and 23.
Date.getMinutes()
The getMinutes() method returns the minutes of a specified date object based on local time. getMinutes returns an integer value from 0 to 59
Date.getSeconds()
getSeconds() method returns the seconds of a specified date object based on local time, and returns an integer value from 0 to 59 Integer value.
Date.getMilliseconds()
getMilliseconds() method returns the number of milliseconds in a specified date object based on local time. The getMilliseconds() method returns an integer from 0 to 999.
Date.getTime()
The return value of the getTime method is a numerical value, indicating the distance from the date at 0:00:00 on January 1, 1970 (UTC, that is, Coordinated Universal Time) The number of milliseconds in time represented by the object.
Date instance-(set)
Date.setDate()
setDate() method specifies the number of days in a date object based on local time.
If dayValue is outside the reasonable range of the month, setDate will update the Date object accordingly. For example, if you specify 0 for dayValue, the date is set to the last day of the previous month.
Date.setFullYear()
The setFullYear() method sets the year for a date object based on local time
If one parameter exceeds a reasonable range, the setFullYear method will update other parameter values , the date value of the date object will also be updated accordingly. For example, specifying 15 for monthValue will increase the year by 1 and the month value will be 3.
Date.setHours()
The setHours() method sets the hours for a date object based on local time and returns the updated date from 1970-01-01 00:00:00 UTC The number of milliseconds in time represented by the object instance.
If a parameter exceeds the reasonable range, setHours will update the date information in the date object accordingly. For example, if 100 is specified for secondsValue, the minutes are incremented by 1, and then 40 is used for seconds.
Date.setMilliseconds()
The setMilliseconds() method sets the milliseconds of a date object based on local time.
If the specified number is outside a reasonable range, the time information of the date object will be updated accordingly. For example, if 1005 is specified, the number of seconds is increased by 1 and the number of milliseconds is 5.
Date.setMinutes()
The setMinutes() method sets the minutes for a date object based on local time.
If a specified parameter exceeds a reasonable range, setMinutes will update the time information in the date object accordingly. For example, specifying 100 for secondsValue will increase the number of minutes by 1 and the number of seconds will be 40.
Date.setMonth()
The setMonth() method sets the month for a date object with a set year based on local time
If a specified parameter exceeds a reasonable range, setMonth will respond accordingly Update the date information in the date object. For example, specifying 15 for monthValue increases the year by 1 and uses 3 for the month.
Date.setSeconds()
The setSeconds() method sets the seconds of a date object based on local time.
If a parameter exceeds a reasonable range, the setSeconds method will update the time information of the date object accordingly. For example, specifying 100 for secondsValue will increase the date object's minutes by 1 and use 40 for seconds.
Date.setTime()
The setTime() method sets the time for a Date object with a number of milliseconds representing the time since 1970-1-1 00:00:00 UTC.
https://developer.mozilla.org...
The above is the detailed content of Detailed introduction to Date object in JavaScript (code example). For more information, please follow other related articles on the PHP Chinese website!

如果您正在寻找根据系统时间戳自动创建文件和文件夹并为其命名的方法,那么您来对地方了。有一种超级简单的方法可以用来完成这项任务。然后,创建的文件夹或文件可用于各种目的,例如存储文件备份、根据日期对文件进行排序等。在本文中,我们将通过一些非常简单的步骤解释如何在Windows11/10中自动创建文件和文件夹,并根据系统的时间戳对其进行命名。使用的方法是批处理脚本,非常简单。希望你喜欢阅读这篇文章。第1节:如何根据系统当前时间戳自动创建文件夹并命名第1步:首先,导航到要在其中创建文件夹的父文件夹,

在使用PHP程序开发时,经常会碰到一些警告或者错误的提示信息。其中,可能出现的一个错误提示就是:PHPWarning:date()expectsparameter2tobelong,stringgiven。这个错误的提示信息意思是:函数date()的第二个参数期望是长整型(long),但是实际传递给它的是字符串(string)。那么,我们

去掉重复并排序的方法:1、使用“Array.from(new Set(arr))”或者“[…new Set(arr)]”语句,去掉数组中的重复元素,返回去重后的新数组;2、利用sort()对去重数组进行排序,语法“去重数组.sort()”。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于Symbol类型、隐藏属性及全局注册表的相关问题,包括了Symbol类型的描述、Symbol不会隐式转字符串等问题,下面一起来看一下,希望对大家有帮助。

怎么制作文字轮播与图片轮播?大家第一想到的是不是利用js,其实利用纯CSS也能实现文字轮播与图片轮播,下面来看看实现方法,希望对大家有所帮助!

一.介绍java.util包中的Date类表示特定的时间,精确到毫秒。如果要想使用我们的Date类,那么我们必须得引入我们的Date类。Date类直接写入年份是得不到正确的结果的。因为java中Date是从1900年开始算的,所以前面的第一个参数只要填入从1900年后过了多少年就是你想要得到的年份。月需要减1,日可以直接插入。这种方法用的比较少,常用的是第二种方法。这种方法是将一个符合特定格式,比如yyyy-MM-dd,的字符串转化成为Date类型的数据。首先,定义一个Date类型的对象Date

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于对象的构造函数和new操作符,构造函数是所有对象的成员方法中,最早被调用的那个,下面一起来看一下吧,希望对大家有帮助。

如何使用Date类的getTime()方法获取日期的毫秒表示形式在Java中,Date类是用于表示日期和时间的类。它提供了许多有用的方法来操作和获取日期对象的信息。其中,getTime()方法是Date类中的一个重要方法,它可以返回日期对象的毫秒表示形式。接下来,我们将详细介绍如何使用这个方法来获取日期的毫秒表示形式,并提供相应的代码示例。使用Date类的g


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 English version
Recommended: Win version, supports code prompts!

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Zend Studio 13.0.1
Powerful PHP integrated development environment

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
