js 時間格式轉化

2021-08-25 17:10:58 字數 2087 閱讀 1155

(function (w) 

// 通用元素物件

var _dout_ = null, _dcontent_ = null;

w.ginit = function () ;

// 清空輸出內容

w.outclean = function () ;

// 輸出內容

w.outset = function (s) ;

// 輸出行內容

w.outline = function (s) ;

// 格式化時長字串,格式為"hh:mm:ss"

w.timetostr = function (ts)

var h = parseint(ts / 3600);

var m = parseint((ts % 3600) / 60);

var s = parseint(ts % 60);

return (ultzeroize(h) + ":" + ultzeroize(m) + ":" + ultzeroize(s));

} catch (e)

};// 格式化日期時間字串,格式為"yyyy-mm-dd hh:mm:ss"

w.datetostr = function (d) catch (e)

};// 格式化日期時間字串,格式為"yyyy-mm-dd hh:mm:ss"

w.datetofstr = function (d) catch (e)

};// 格式化日期時間字串,格式為"yyyy-mm-dd"

w.datetostr2 = function (d) catch (e)

};// 格式化日期時間字串,格式為"yyyy-mm-dd"

w.datetofstr2 = function (d) catch (e)

};// 格式化日期時間字串,格式為"mm-dd hh:mm"

w.datetostrmm_dd_hh_mm = function (d) catch (e)

};// 格式化日期時間字串,格式為"mm-dd"

w.datetostrmm_dd = function (d) catch (e)

};// 格式化日期時間字串,格式為"hh:mm"

w.datetostrhh_mm = function (d) catch (e)

};// 格式化日期時間字串

w.datetohstr = function (d) catch (e)

};// 解析json日期字串 2014-08-12t14:31:16.310格式

w.parsejsondatestr = function (str) catch (e)

}w.qstr = function () }}

return strback;

}//將url中的utf-8字串轉成中文字串

w.getcharfromutf8 = function (str)

return cstr + str;

}//將編碼轉換成字元

function utf8tochar(str)

//獲取滾動條當前的位置

w.getscrolltop = function ()

else if (document.body)

return scrolltop;

}//獲取當前可是範圍的高度

w.getclientheight = function ()

else

return clientheight;

}//獲取文件完整的高度

w.getscrollheight = function ()

//檢測變數是效定義

w.isnoe = function (v)

/*** zeroize value with length(default is 2).

* @param v

* @param l

* @return

*/w.ultzeroize = function (v, l)

return z + v;

};})(window);

python GMT時間格式轉化

1 datetime型別轉換成gmt時間格式的字串 如 thu,19 feb 2009 16 00 07 gmt strftime 官方釋義 new string from datetime import datetime gmt format a,d b y h m s gmt 0800 cst ...

C 時間格式轉化

今天在使用repeater的時候,需要把時間變成短格式,忘了以前使用什麼方法,臨時寫了乙個,記錄一下。using system using system.data using system.configuration using system.web using system.web.securit...

python GMT時間格式轉化

1 datetime型別轉換成gmt時間格式的字串 如 thu,19 feb 2009 16 00 07 gmt from datetime import datetime gmt format a,d b y h m s gmt 0800 cst print datetime.utcnow str...