博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
js 获取当前时间并格式化
阅读量:6047 次
发布时间:2019-06-20

本文共 488 字,大约阅读时间需要 1 分钟。

  hot3.png

function getNowDateFormate(now){
 strTime = now.toLocaleString();
 strYear = now.getYear();
 strMonth = now.getMonth();
 strDay = now.getDay();
   
 displayTime = strYear +"/"+strMonth+"/"+strDay;  
 if(strTime.substring(5,6)<10){
   var displayTime = strTime.substring(0,4)+"-0"+strTime.substring(5,6)+"-"+strTime.substring(7,9);
     }else{
   
   var displayTime = strTime.substring(0,4)+"-"+strTime.substring(5,7)+"-"+strTime.substring(8,10)
 };
 return displayTime;
}

转载于:https://my.oschina.net/sunfei/blog/32804

你可能感兴趣的文章
SCCM2012R2部署之九:委派管理
查看>>
程序员面试的注意事项
查看>>
查看Ubuntu硬件信息命令
查看>>
Redhat 6.8使用mailx带账号认证发邮件
查看>>
windows下查看真实的IP与MAC工具
查看>>
我的友情链接
查看>>
IE9浏览器固定网站功能的实现方法
查看>>
保护你的Web服务器 iptables防火墙脚本全解读
查看>>
Swift分支语句—switch语句
查看>>
oracle2
查看>>
HTTP 错误 401.3 - Unauthorized
查看>>
RHEL 6.4 多网卡绑定
查看>>
Python自动化测试例子--一个简单的自动化测试用例脚本--批量执行测试用例
查看>>
丢失了 Visual Basic 项目
查看>>
ruby数组的find 和 select方法的区别
查看>>
删除历史记录后,兼容性视图列表被清空怎么办?
查看>>
HTML5 & CSS3 初学者指南(4) – Canvas使用
查看>>
Azure 上通过 SendGrid 发送邮件
查看>>
SSKeychain在iOS中的原理和使用说明
查看>>
java4j配置和使用
查看>>