js日期格式化yyyymmdd js 时间格式化

js怎样将自带的时间date格式化?【js日期格式化yyyymmdd js 时间格式化】刚项目中需要使用js格式化输出时间,发现js中并没有现成的类似PHP中date()的函数 。于是用js模拟一个方便以后使用,代码如下:格式化时间参数: formatStr 格式化串 y年,m月,d日,h小时,i分钟,s秒钟缺省值 \"y-m-d h:i:s\"fdate 要格式化的时间(时间戳)UTC秒数 缺省值 当前时间实例: formatDate()当前时间默认格式 如 2011-4-12 12:51:12formatDate(\"y/m/d\", 2132132131) 某时间格式为 年月日 如 2010/12/5function formatDate(formatStr, fdate){ var fTime, fStr = \"ymdhis\" if (!formatStr)formatStr= \"y-m-d h:i:s\" if (fdate)fTime = new Date(fdate) elsefTime = new Date() var formatArr = [ fTime.getFullYear().toString(), (fTime.getMonth() 1).toString(), fTime.getDate().toString(), fTime.getHours().toString(), fTime.getMinutes().toString(), fTime.getSeconds().toString()] for (var i=0 i

    推荐阅读