havdone's guarden

博客园 首页 新随笔 联系 订阅 管理
  6 随笔 :: 1 文章 :: 0 评论 :: 4338 阅读

2010年12月21日 #

1。字符串(string)转Date
不支持yyyy-MM-dd
支持MM-dd-yyyy,yyyy/MM/dd,MM/dd/yyyy,MMMM dd, yyyy,MMM dd, yyyy
         
1   var issuedateStr = objIssueDate.value.replace(/-/g, '/');//transfer format from yyyy-MM-dd to yyyy/MM/dd
2   var expireddateStr = objExpired.value.replace(/-/g, '/');
3   var dateExired = new Date(expireddateStr); // yyyy/MM/dd
4   var dateIssue = new Date(issuedateStr);

2.加一年
        
1 dateIssue.setFullYear(dateIssue.getFullYear() + 1);
dateIssue加了一年
         
1   var limitationOfExpired = dateIssue;//make hour min same with dateissue
2   limitationOfExpired.setFullYear(dateIssue.getFullYear() + 1);

 dateIssue也加了一年

正确应该是
   

1 var limitationOfExpired =new Date(dateIssue.getFullYear(),dateIssue.getMonth(),dateIssue.getDate());//make year month date same with dateissue
2 limitationOfExpired.setFullYear(dateIssue.getFullYear() + 1);


3.比较
     

1   if (dateExired - limitationOfExpired>0)
2                 alert("有效日期最多一年!");
3 
4    if (dateExired <dateIssue)
5                 alert("有效期不能小于发证日期");  


4.         

  var date=new Date();//actually get current date
//same with:
  var date=Date();


 

posted @ 2010-12-21 17:59 ajin 阅读(1104) 评论(0) 推荐(0) 编辑

2010年11月26日 #

摘要: 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--/***************************************************************************************************... 阅读全文
posted @ 2010-11-26 11:59 ajin 阅读(338) 评论(0) 推荐(0) 编辑

摘要: One week ago, I surfed a forum and got a tree class template. It has some a little diffrence from what I knew before. I used this class template to deal with a work task. Spending two hours,I just und... 阅读全文
posted @ 2010-11-26 11:21 ajin 阅读(246) 评论(0) 推荐(0) 编辑

摘要: What Is In The Shopping Cart Of An Ecommerce Developer? Posted under Ecommerce Development on April 8th, 2010 by Michael Vax / No Comments In the early... 阅读全文
posted @ 2010-11-26 11:06 ajin 阅读(336) 评论(0) 推荐(0) 编辑

2008年1月11日 #

摘要: This article provides basic information to realize how pass c# function pointer and class object to a c++ function as parameters. 阅读全文
posted @ 2008-01-11 23:07 ajin 阅读(1776) 评论(0) 推荐(0) 编辑

摘要: This article help to make sense of the various data types in programming languages by C++ data type. 阅读全文
posted @ 2008-01-11 23:06 ajin 阅读(470) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示