最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

js模仿php中strtotime()與date()函數(shù)實(shí)現(xiàn)方法

 更新時(shí)間:2015年08月11日 11:56:44   作者:laomao452  
這篇文章主要介紹了js模仿php中strtotime()與date()函數(shù)實(shí)現(xiàn)方法,涉及javascript時(shí)間操作的相關(guān)技巧,非常具有實(shí)用價(jià)值,需要的朋友可以參考下

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

在js中沒(méi)有像php中strtotime()與date()函數(shù),可直接轉(zhuǎn)換時(shí)間戳,下面我們來(lái)自定一個(gè)函數(shù)來(lái)實(shí)現(xiàn)js中具體有時(shí)間戳轉(zhuǎn)換的功能。

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+' 轉(zhuǎn)換后的時(shí)間戳為: '+unix+' 
'); 
var unix = 1353033300; 
var datetime = unix_to_datetime(unix); 
document.write(unix+' 轉(zhuǎn)換后的日期為: '+datetime);

如果想彈出:2010-10-20 10:00:00這個(gè)格式的也好辦

<script>
function getLocalTime(nS) {
  return new Date(parseInt(nS) * 1000).toLocaleString().replace(/年|月/g, "-").replace(/日/g, " "); 
}
alert(getLocalTime(1177824835));
</script>

完整實(shí)例

<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}$/,' '); 
}
/* 同上面函數(shù) */
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>

希望本文所述對(duì)大家的javascript程序設(shè)計(jì)有所幫助。

相關(guān)文章

最新評(píng)論

龙海市| 鹤壁市| 闵行区| 太谷县| 五台县| 凤山市| 日喀则市| 监利县| 巩留县| 乌兰县| 喀喇沁旗| 隆昌县| 木兰县| 玉树县| 嘉兴市| 龙川县| 开平市| 桐庐县| 潍坊市| 平原县| 广丰县| 永吉县| 肥乡县| 广元市| 黄浦区| 永仁县| 阿瓦提县| 宁明县| 漳州市| 波密县| 吴忠市| 宁海县| 惠州市| 和田县| 莱阳市| 柳州市| 丰县| 弋阳县| 万年县| 左贡县| 惠州市|