惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Apple Machine Learning Research
Apple Machine Learning Research
Recent Announcements
Recent Announcements
IT之家
IT之家
人人都是产品经理
人人都是产品经理
G
Google Developers Blog
Microsoft Azure Blog
Microsoft Azure Blog
博客园_首页
大猫的无限游戏
大猫的无限游戏
U
Unit 42
罗磊的独立博客
博客园 - Franky
WordPress大学
WordPress大学
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
M
MIT News - Artificial intelligence
SecWiki News
SecWiki News
V
Vulnerabilities – Threatpost
P
Privacy International News Feed
P
Palo Alto Networks Blog
F
Fortinet All Blogs
P
Proofpoint News Feed
博客园 - 叶小钗
C
CERT Recently Published Vulnerability Notes
T
Tor Project blog
Spread Privacy
Spread Privacy
S
Securelist
C
Cisco Blogs
I
Intezer
D
Darknet – Hacking Tools, Hacker News & Cyber Security
Cyberwarzone
Cyberwarzone
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
P
Privacy & Cybersecurity Law Blog
宝玉的分享
宝玉的分享
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Engineering at Meta
Engineering at Meta
S
Schneier on Security
C
CXSECURITY Database RSS Feed - CXSecurity.com
GbyAI
GbyAI
T
Troy Hunt's Blog
T
Threatpost
博客园 - 司徒正美
Y
Y Combinator Blog
Hugging Face - Blog
Hugging Face - Blog
AWS News Blog
AWS News Blog
T
The Blog of Author Tim Ferriss
G
GRAHAM CLULEY
N
Netflix TechBlog - Medium
酷 壳 – CoolShell
酷 壳 – CoolShell
Google DeepMind News
Google DeepMind News
Know Your Adversary
Know Your Adversary
S
SegmentFault 最新的问题

博客园 - xixi8820

输入框验证输入数字的js 关于VS2005中GridView的自定义分页,单选、多选、排序、自增列的简单应用(转载的) 使用t-sql从身份证号中提取生日(转自别人,个人学习收藏用) 一个最简单的登录例子 js中setTimeout与setInterval的区别 js将html中的内容导出word、或者excel文件的方法 asp.net 2.0 生成验证码 在Asp.Net中应用DataFormatString ASP.NET中App_Code,App_Data等文件夹的作用 javascript 客户端验证 在DataGrid中模版列显示图片 上传图片 页面取物理路径和几种获取asp.net应用程序的路径 模式窗口关闭,并刷新父窗口的方法 跨页面实现多选 用window.location.href实现刷新另个框架页面 听说是个高效的分页存储过程,可以轻松应对百万数据(转) keycode 值 DataGrid点击删除按钮弹出对话框的问题
javascript 获得指定日期的临近日期的方法
xixi8820 · 2008-02-21 · via 博客园 - xixi8820

 1 //取得日期字符串,返回YYYY-MM-DD
 2 function getDate(date)
 3 {
 4     var thisYear = date.getYear();
 5     var thisMonth = date.getMonth() + 1;
 6     //如果月份长度是一位则前面补0
 7     if(thisMonth<10) thisMonth = "0" + thisMonth;
 8     
 9     var thisDay = date.getDate();
10     //如果天的长度是一位则前面补0
11     if(thisDay<10) thisDay = "0" + thisDay;
12     
13     return thisYear + "-" + thisMonth + "-" + thisDay;
14 }
15 
16 //取得日期时间字符串,返回YYYY-MM-DD HH:mm:SS
17 function getDateTime(date)
18 {
19     var thisYear = date.getYear();
20     var thisMonth = date.getMonth() + 1;
21     //如果月份长度是一位则前面补0
22     if(thisMonth<10) thisMonth = "0" + thisMonth;
23     
24     var thisDay = date.getDate();
25     //如果天的长度是一位则前面补0
26     if(thisDay<10) thisDay = "0" + thisDay;
27 
28     var thisHour = date.getHours();
29     //如果小时长度是一位则前面补0
30     if(thisHour<10) thisHour = "0" + thisHour;
31     
32     var thisMinute = date.getMinutes();
33     //如果分钟长度是一位则前面补0
34     if(thisMinute<10) thisMinute = "0" + thisMinute;
35     
36     var thisSecond = date.getSeconds();
37     //如果分钟长度是一位则前面补0
38     if(thisSecond<10) thisSecond = "0" + thisSecond;
39     
40     return thisYear + "-" + thisMonth + "-" + thisDay + " " + thisHour + ":" + thisMinute + ":" + thisSecond;
41 }
42 
43 //根据日期字符串生成日期对象,日期字符串格式为YYYY-MM-DD
44 function setDate(strDate)
45 {
46     var aDate = strDate.split("-");
47     return new Date(aDate[0],aDate[1]-1,aDate[2]);
48 }
49 
50 //获得指定日期的临近日期
51 //strDate:指定的日期,格式为yyyy-mm-dd  nDay:与指定日期相邻的天数 1为明天 -1为昨天
52 function getNearDay(strDate,nDay)
53 {
54     try
55     {
56         var oDate = setDate(strDate);
57         var newDate = new Date(oDate.valueOf() + nDay*24*60*60*1000);
58         return getDate(newDate);
59     }
60     catch(ex)
61     {
62         return "error";
63     }
64 }