博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
js日期比较
阅读量:5133 次
发布时间:2019-06-13

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

 

alert(EDate< new Date().format("yyyy-MM-dd hh:mm:ss"));

 

1 Date.prototype.format = function(format){  2 var o = {  3 "M+" : this.getMonth()+1, //month  4 "d+" : this.getDate(), //day  5 "h+" : this.getHours(), //hour  6 "m+" : this.getMinutes(), //minute  7 "s+" : this.getSeconds(), //second  8 "q+" : Math.floor((this.getMonth()+3)/3), //quarter  9 "S" : this.getMilliseconds() //millisecond 10 } 11 12 if(/(y+)/.test(format)) { 13 format = format.replace(RegExp.$1, (this.getFullYear()+"").substr(4 - RegExp.$1.length)); 14 } 15 16 for(var k in o) { 17 if(new RegExp("("+ k +")").test(format)) { 18 format = format.replace(RegExp.$1, RegExp.$1.length==1 ? o[k] : ("00"+ o[k]).substr((""+ o[k]).length)); 19 } 20 } 21 return format; 22 }
View Code

 

posted on
2015-12-31 17:27  阅读(
...) 评论(
...) 收藏

转载于:https://www.cnblogs.com/itslives-com/p/compareDate.html

你可能感兴趣的文章
split(v1,v2)用于把一个字符串分割成字符串数组
查看>>
python学习笔记 -- map() 操作可迭代序列
查看>>
删除一个带有文件的文件夹
查看>>
content-providers
查看>>
冒泡排序及优化
查看>>
BIND9源码分析之 多个view的情况下如何做dynamic update
查看>>
行为科学统计第16章--相关
查看>>
银河麒麟操作系统常用问题及解决方法
查看>>
$python正则表达式系列(5)——零宽断言
查看>>
Python 函数式编程(3) —— 闭包
查看>>
RHEL6 kernel bug在hadoop上的测试
查看>>
8种传值方式
查看>>
EF的简单认识
查看>>
如何降低死循环的 CPU 占用
查看>>
leetcode 682. 棒球比赛(Baseball Game)
查看>>
Appstore 上传
查看>>
HTML5新增的几个容器模块
查看>>
利用Servlet做一套增删改查
查看>>
linux shell 之 crontab(定时任务)详解
查看>>
linux 远程管理
查看>>