js 시간 형식과 timestamp_javascript 기술 간의 상호 변환을 위한 샘플 코드

WBOY
풀어 주다: 2016-05-16 17:07:06
원래의
1180명이 탐색했습니다.
1. 시간 변환 타임스탬프
코드 복사 코드는 다음과 같습니다.

function transdate(endTime){
var date=new Date();
date.setFullYear(endTime.substring(0,4))
date.setMonth(endTime.substring(5,7) )- 1);
date.setDate(endTime.substring(8,10));
date.setHours(endTime.substring(11,13))
date.setMinutes(endTime.substring( 14, 16));
date.setSeconds(endTime.substring(17,19));
return Date.parse(date)/1000;


2. 타임스탬프 변환 시간 (1): 2011-3-16 16:50:43 형식으로 변환:

코드 복사 코드는 다음과 같습니다.
function getDate(tm){
var tt=new Date(parseInt(tm) * 1000).toLocaleString().replace (/year| Month/g, "-").replace(/日/g, " ")
return tt
}

(2): 3월 16일로 변환; , 2011 16:50:43:

코드 복사 코드는 다음과 같습니다.
함수 getDate(tm){
var tt=new Date(parseInt(tm) * 1000).toLocaleString()
return tt
}

(3): 다음으로 변환 2011년 3월 16일 16:50

코드 복사 코드는 다음과 같습니다.
function getDate (tm){
var tt=new Date(parseInt(tm) * 1000).toLocaleString().substr(0,16);
return tt;
관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿