jquery将⽇期转换成指定格式的字符串
引⽤jquery⽂件,如<script type="text/javascript" src="jquery-1.8.3.min.js"></script>
Date.prototype.Format = function (fmt) {
var o = {
"M+": Month() + 1, //⽉份
"d+": Date(), //⽇
"H+": Hours(), //⼩时
"m+": Minutes(), //分
"s+": Seconds(), //秒
"q+": Math.floor((Month() + 3) / 3), //季度
"S": Milliseconds() //毫秒
};
if (/(y+)/.test(fmt)) fmt = place(RegExp.$1, (FullYear() + "").substr(4 - RegExp.$1.length));
for (var k in o)
jquery字符串截取if (new RegExp("(" + k + ")").test(fmt)) fmt = place(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length)));
return fmt;
}
就可以这样调⽤
$(function(){
var startDate = new Date().Format("yyyy-MM-dd");
}
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论