1、取得当前时间

function getNowFormatDate() {
var date = new Date();
var seperator1 = "-";
var seperator2 = ":";
var month = date.getMonth() + 1;
var strDate = date.getDate();
var hours = date.getHours();
var minutes = date.getMinutes();
var seconds = date.getSeconds();
if (month >= 1 && month <= 9) {
month = "0" + month;
}
if (strDate >= 0 && strDate <= 9) {
strDate = "0" + strDate;
}
if (hours >= 0 && hours <= 9) {
hours = "0" + hours;
}
if (minutes >= 0 && minutes <= 9) {
minutes = "0" + minutes;
}
if (seconds >= 0 && seconds <= 9) {
seconds = "0" + seconds;
}
var currentdate = date.getFullYear() + seperator1 + month + seperator1 + strDate
+ " " + hours + seperator2 + minutes + seperator2 + seconds;
return currentdate;
} 2、取得减30分钟时间
function getNowFormatDate() {
var date = new Date();
date.setMinutes(date.getMinutes()-30); //当前时间减30分钟
var seperator1 = "-";
var seperator2 = ":";
var month = date.getMonth() + 1;
var strDate = date.getDate();
var hours = date.getHours();
var minutes = date.getMinutes();
var seconds = date.getSeconds();
if (month >= 1 && month <= 9) {
month = "0" + month;
}
if (strDate >= 0 && strDate <= 9) {
strDate = "0" + strDate;
}
if (hours >= 0 && hours <= 9) {
hours = "0" + hours;
}
if (minutes >= 0 && minutes <= 9) {
minutes = "0" + minutes;
}
if (seconds >= 0 && seconds <= 9) {
seconds = "0" + seconds;
}
var currentdate = date.getFullYear() + seperator1 + month + seperator1 + strDate
+ " " + hours + seperator2 + minutes + seperator2 + seconds;
return currentdate;
}
3、各种时间操作

var now = new Date();
   var year = now.getFullYear(); //年
   var month = now.getMonth() + 1; //月
   var day = now.getDate(); //日
   var hour = now.getHours(); //时
   var minute = now.getMinutes(); //分
   var second = now.getSeconds(); //秒

 
 

最新文章

  1. 带进度条的文件批量上传插件uploadify
  2. getElementsByClassName简单实现
  3. 如何在前台脚本通过json传递数据到后台(使用微软自带的ajax)
  4. Mysql常用命令行大全
  5. oracle 10g 学习之.NET使用Oracle数据库(14)
  6. python 多线程抓取动态数据
  7. HttpClient(4.3.5) - HttpClient Proxy Configuration
  8. Windows.Andy.Code4App.dll Win8.1/WP8.1通用类库@ver1.0.1
  9. Node.js + Express + Mongodb 开发搭建个人网站(一)
  10. WCF学习笔记之传输安全
  11. node-服务器
  12. Symantec Backup Exec Agent 推送错误Error connecting to the remote computer. Ensure that the computer is available, has WMI enabled and is not blocked by a firewall
  13. SQLite 线程安全和并发
  14. 解决在Windows10没有修改hosts文件权限
  15. How to identify safari in Mac?
  16. python---定义一个session类(无错)
  17. oo作业总结报告2
  18. css3实现卡牌旋转与物体发光效果
  19. 新手向:从不同的角度来详细分析Redis
  20. MySQL易忘知识点梳理

热门文章

  1. leetcode149
  2. 使用PHP的反射Reflection获取对象信息
  3. MM-RGV、AGV 、IGV是什么
  4. oracle 修改字符集 为ZHS16GBK
  5. C#反射机制详解
  6. C++复习:纯虚函数和抽象类
  7. 4.ClassLink - 一种新型的VPC 经典网络的连接方式
  8. CC攻击与DDOS攻击区别
  9. LeetCode OJ 143. Reorder List(两种方法,快慢指针,堆栈)
  10. 遍历DOM树,链式操作