JavaScript to get the current timestamp:
Method 1:
CopyCodeThe Code is as follows: var timestamp = date. parse (new date ());
Result: 1280977330000
Method 2:Copy codeThe Code is as follows: var timestamp = (new date (). valueof ();
Result: 1280977330748
The above code gets the number of milliseconds that have elapsed since midnight, January 1, January 1, 1970. The difference between the two is that, in the first method, the millisecond bit is zero, that is, only the number of milliseconds accurate to the second
As shown in the following figure, the specific time corresponding to the Unix timestamp is returned:Copy codeThe Code is as follows: var time = '20140901 ';
// The key is to multiply by 1000, because the time is relative to the start of 1970, so after multiply by 1000, it will be converted to the current time.
VaR real_time = new date (time) * 1000;
Document. Write (real_time );
The code is easy to convert the timestamp.