<script
src=
"}js/jquery.js"
>
script
>
<
script
>
$.extend(,
/*** 日期 轉換為
unix
時間戳*
@param
2014-01-01 20:20:20
日期格式
* @return
unix
時間戳(秒)
*/datetounix: function(string) ,
/*** 時間戳轉換日期
* @param
unixtime
待時間戳(秒
)* @param
isfull
返回完整時間
(y-m-d
或者 y-m-d h:i:s)
* @param
timezone
時區*/
unixtodate: function(unixtime, isfull, timezone)
var
time = new
date(unixtime * 1000);
var
ymdhis = "";
ymdhis += time.getutcfullyear() + "-";
ymdhis += (time.getutcmonth()+1) + "-";
ymdhis += time.getutcdate();
if (isfull === true)
return
ymdhis;}}
});script
>
str+= ""+$.mytime.unixtodate(obj[i].start_date,true)+"";
str+= ""+$.mytime.unixtodate(obj[i].end_date,true)+"";
2.方法二
function getlocaltime(ns) $/,' ');
} alert(getlocaltime(1293072805));
3.方法三
function getlocaltime(ns)
alert(getlocaltime(1293072805));
4.方法四
function getlocaltime(ns)
alert(getlocaltime(1177824835));
5.方法五
function formatdate(now)
var d=new date(1230999938);
alert(formatdate(d));
C 時間轉換格式化
databinder.eval格式化時間 有短時間格式 我們經常會遇到對時間進行轉換,達到不同的顯示效果,預設格式為 2007 7 7 14 33 34 如果要換成成200707,07 2007,2007 7 7或更多的格式該怎麼辦呢?這裡將要用到 datetime.tostring的方法 stri...
時間戳轉換成格式化日期
記錄分享一篇鑫哥的格式化日期 時間戳轉換成指定格式日期 eg.dateformat 11111111111111,y年m月d日 h時i分 2322年02月06日 03時45分 var dateformat function timestamp,formats return value var myd...
js 日期轉換格式
var starttime 2009 08 07 var endtime 2009 08 08 var starttimedatetemp starttime.replace w s s w s w 2 3 1 var endtimedatetemp endtime.replace w s s w ...