1. 程式人生 > >【js】毫秒數怎麼轉成日期格式

【js】毫秒數怎麼轉成日期格式

<html>
	<head>
		<script>
			//這裡傳入的值一定要是數字,如果是字串的話,需要先轉為int型
			var time = new Date(1530802447067);
			console.log(time);//當前時間
			console.log(time.getFullYear()+"年");//年份
			console.log(time.getMonth()+1+"月");//月份
			console.log(time.getDate()+"日");//幾號
			console.log("周"+time.getDay());//星期幾
		</script>
	</head>
</html>