//判斷字串是否日期格式
function isdate(val)
//日期格式化
function formatdate2(val)
//日期格式化
function formatdatetime(val)
//數字格式化
function formatnumber(val)
return
formatwiththousandsseparator(val);
}//數字格式化
function formatnumber2(val)
return
formatwiththousandsseparator(val);
}//數字格式化
function formatnumber4(val)
return
formatwiththousandsseparator(val);
}function formatdate(datestring, formatstring)
if (datestring == null || datestring == '
/date(-62135596800000)/
' || datestring.length <= 0
)
else}//
將數字轉換成帶千位分隔符
function formatwiththousandsseparator(s) ,)/;
while
(re.test(s))
s = s.replace(re, "
$1,$2");
s = s.replace(/,(\d*)&end$/, "
.$1"
);
if (s.substring(s.length - 1, s.length) == '.'
) s = s.substring(0, s.length - 1
); }
catch
(e)
return
s;}
利用上面的方法,對於後台傳到前台的數字型別的datetime資料,直接
var expectedsendtime = rowdata.expectedsendtime;
$(cell).html(formatdate2(expectedsendtime));
就可以得到對應的日期格式字元,很方便!
js 中時間戳轉換格式化日期
script src js jquery.js script script extend 日期 轉換為 unix 時間戳 param 2014 01 01 20 20 20 日期格式 return unix 時間戳 秒 datetounix function string 時間戳轉換日期 param...
MySQL日期函式與日期轉換格式化函式大全
mysql作為一款開元的免費關係型資料庫,使用者基礎非常龐大,本文列出了mysql常用日期函式與日期轉換格式化函式 1 dayofweek date select dayofweek 2016 01 16 select dayofweek 2016 01 16 00 00 00 7 表示返回日期da...
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 ...