이 글의 예시에서는 PHP의 strtotime(), date() 함수를 모방한 js의 구현 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 세부 내용은 다음과 같습니다.
js에는 php처럼 타임스탬프를 직접 변환할 수 있는 strtotime(), date() 함수가 없습니다. 다음으로, 특정 타임스탬프 변환 기능을 js에서 구현하는 함수를 커스터마이징하겠습니다.
function datetime_to_unix(datetime){ var tmp_datetime = datetime.replace(/:/g,'-'); tmp_datetime = tmp_datetime.replace(/ /g,'-'); var arr = tmp_datetime.split("-"); var now = new Date(Date.UTC(arr[0],arr[1]-1,arr[2],arr[3]-8,arr[4],arr[5])); return parseInt(now.getTime()/1000); } function unix_to_datetime(unix) { var now = new Date(parseInt(unix) * 1000); return now.toLocaleString().replace(/年|月/g, "-").replace(/日/g, " "); } var datetime = '2012-11-16 10:36:50'; var unix = datetime_to_unix(datetime); document.write(datetime+' 转换后的时间戳为: '+unix+' '); var unix = 1353033300; var datetime = unix_to_datetime(unix); document.write(unix+' 转换后的日期为: '+datetime);
팝업하고 싶은 경우 : 2010-10-20 10:00:00 이 형식으로 하면 쉽습니다
<script> function getLocalTime(nS) { return new Date(parseInt(nS) * 1000).toLocaleString().replace(/年|月/g, "-").replace(/日/g, " "); } alert(getLocalTime(1177824835)); </script>
전체 예시
<script type="text/javascript"> var day1 = parseInt(new Date().valueOf()/1000); var day2 = new Date(day1 * 1000); function getLocalTime(nS) { return new Date(parseInt(nS) * 1000).toLocaleString().replace(/:d{1,2}$/,' '); } /* 同上面函数 */ function getLocalTimes(nS) { return new Date(parseInt(nS) * 1000).toLocaleString().substr(0,17); } function getLocalFormatTime(nS) { return new Date(parseInt(nS) * 1000).toLocaleString().replace(/年|月/g, "-").replace(/日/g, " "); } document.getElementById("btn1").onclick = function(){ alert(day1); } document.getElementById("btn2").onclick = function(){ alert(day2.toLocaleString()); } document.getElementById("btn3").onclick = function(){ alert( getLocalTime(day1) ); } document.getElementById("btn4").onclick = function(){ alert( getLocalFormatTime(day1) ); } document.getElementById("btn5").onclick = function(){ alert(day2.getFullYear()+"-"+(day2.getMonth()+1)+"-"+day2.getDate()+" "+day2.getHours()+":"+day2.getMinutes()+":"+day2.getSeconds()); } </script>
이 기사가 모든 사람의 JavaScript 프로그래밍 설계에 도움이 되기를 바랍니다.