深圳市金黑网络技术有限公司始终坚持以用户需求为导向,提供安全、稳定、高效的产品和服务!
签到 · 搜索导航 · 服务热线 · 微信/手机:17817817816

深圳网站建设

搜索附件  
金黑网络 附件中心 应用资源下载 网页特效 时间特效代码 js原生format方法格式化Date时间日期: index.zip

热门下载

左侧广告
版权所有:金黑网络
For 2013-2023 © jinhei.com

js原生format方法格式化Date时间日期: index.zip

附件信息右侧广告
附件下载与主题内容间广告

 

点击附件下载:下载附件 售价 1
js原生format方法格式化Date时间日期:
js原生format方法格式化Date时间日期



javascript代码如下:
  1. <script>
  2.         Date.prototype.format = function(format) {
  3.                 if (isNaN(this)) return '';
  4.                 var o = {
  5.                         'm+': this.getMonth() + 1,
  6.                         'd+': this.getDate(),
  7.                         'h+': this.getHours(),
  8.                         'n+': this.getMinutes(),
  9.                         's+': this.getSeconds(),
  10.                         'S': this.getMilliseconds(),
  11.                         'W': ["日", "一", "二", "三", "四", "五", "六"][this.getDay()],
  12.                         'q+': Math.floor((this.getMonth() + 3) / 3)
  13.                 };
  14.                 if (format.indexOf('am/pm') >= 0) {
  15.                         format = format.replace('am/pm', (o['h+'] >= 12) ? '下午' : '上午');
  16.                         if (o['h+'] >= 12) o['h+'] -= 12;
  17.                 }
  18.                 if (/(y+)/.test(format)) {
  19.                         format = format.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length));
  20.                 }
  21.                 for (var k in o) {
  22.                         if (new RegExp("(" + k + ")").test(format)) {
  23.                                 format = format.replace(RegExp.$1, RegExp.$1.length == 1 ? o[k] : ("00" + o[k]).substr(("" + o[k]).length));
  24.                         }
  25.                 }
  26.                 return format;
  27.         }
  28.         var time = new Date().format('yyyy-mm-dd hh-nn-ss');
  29.         alert("现在是"+time);
  30. </script>
复制代码


同一主题附件字上面广告
         同一主题附件:
    js弹窗时间.jpg
    index.zip (885 Bytes)
建站百科
主营业务
新闻动态
了解我们
全国免费咨询

QQ业务咨询:515138 / 6369341

联系地址:深圳市龙岗区盛龙路60号和中心12楼

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

微信扫一扫打赏

返回顶部