国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > JavaScript > 正文

js模仿php中strtotime()與date()函數實現方法

2019-11-20 11:51:42
字體:
來源:轉載
供稿:網友

本文實例講述了js模仿php中strtotime()與date()函數實現方法。分享給大家供大家參考。具體如下:

在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程序設計有所幫助。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 清新县| 昌邑市| 方城县| 彭山县| 泽州县| 浙江省| 公主岭市| 渭源县| 云梦县| 延川县| 乌什县| 宜章县| 新竹市| 乌兰察布市| 叶城县| 武汉市| 含山县| 凌源市| 晋州市| 昭苏县| 弥渡县| 广东省| 霍林郭勒市| 河东区| 浮梁县| 板桥市| 双江| 寿宁县| 江孜县| 大兴区| 突泉县| 连城县| 阿拉善左旗| 烟台市| 枞阳县| 尚义县| 淮南市| 溆浦县| 永济市| 社旗县| 许昌县|