Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to convert timestamp to date format by javascript

2025-04-03 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)05/31 Report--

This article mainly explains "how to change the timestamp into date format by javascript". Interested friends may wish to have a look at it. The method introduced in this paper is simple, fast and practical. Let's let the editor take you to learn how to change the timestamp into a date format by javascript.

Methods: 1, use getFullYear (), getMonth (), getDate (), getHours (), getMinutes (), getSeconds () to convert the timestamp into the year, month, day, hour and second value; 2, use the "+" operator to splice the converted year, month, day, hour and second value.

The operating environment of this tutorial: windows7 system, javascript1.8.5 version, Dell G3 computer.

We often need to convert timestamps to date formats in our development, but the Date method that comes with JavaScript itself is not as powerful as PHP date's. Therefore, we need to write a method ourselves.

First of all, we need to take a look at the methods of the Date object that comes with JavaScript:

GetDate: get the day in one (1-31)

GetFullYear: get the complete year, for example: 2019

GetMonth: get month (0-11) (ps: cardinality starts at 0)

GetHours: get hours (0-23)

GetMinutes: get minutes (0-59)

GetSeconds: number of seconds to get (0-59)

Through the above method, we can write out the method of timestamp conversion. Note that the timestamp must be accurate to milliseconds, because many of the timestamps returned by the backend are in seconds. Let's see how to write them:

Function add0 (m) {return m

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report