2017년 5월 27일 토요일

JavaScript : 날짜와 시간 구하기

<script language="javascript">
<!--
var today=new Date();
document.write(today.getTime()+"<br>");
today.setYear(today.getYear()+3); //2005년이 나오게
document.write(today.getYear()+"년"+"<br>");
document.write(today.toLocaleString()+"<br>");
//document.write(today.toLocaleString());날짜와 시간을 한글로 나타냄.
-->
</script>