本文主要和大家分享js時間戳和一般時間互相轉換方法程式碼,我們會和大家以程式碼的形式和大家分享,希望能幫助大家。
var timestamp1 = Date.parse(new Date()); console.log(timestamp1); //杈撳嚭褰撳墠鏃堕棿鐨勬椂闂存埑var date = new Date(1520324618000); console.log(date); Y = date.getFullYear() + '-'; M = (date.getMonth()+1 < 10 ? '0'+(date.getMonth()+1) : date.getMonth()+1) + '-'; D = date.getDate() + ' '; h = date.getHours() + ':'; m = date.getMinutes() + ':'; s = date.getSeconds(); console.log(Y+M+D+h+m+s);
相關推薦:
以上是js時間戳記和普通時間相互轉換方法程式碼的詳細內容。更多資訊請關注PHP中文網其他相關文章!