이 글에서는 다음과 같이 js 시간과 타임스탬프 간의 변환에 대한 자세한 예를 제공합니다
1. 타임스탬프를 시간으로 변환
var formatDate = function(d) { var now = new Date(d); var year = now.getFullYear(); var month = now.getMonth() + 1; var date = now.getDate(); var hour = now.getHours(); var minute = now.getMinutes(); var second = now.getSeconds(); return year + "-" + month + "-" + date + " " + hour + ":" + minute + ":" + second; }
2. 타임스탬프에서 현재 타임스탬프를 빼서 초 수를 구합니다
위 내용은 js 시간과 타임스탬프 간의 변환 예시에 대한 자세한 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!