码迷,mamicode.com
首页 > Web开发 > 详细

CRM 日期类型的一些处理JS

时间:2016-12-03 23:41:52      阅读:220      评论:0      收藏:0      [点我收藏+]

标签:date()   计划   class   日期   开始   处理   color   nbsp   get   

//当前日期
var now = new Date();
//换算为毫秒数
var now_ms =  Date.UTC( now.getFullYear(), now.getMonth(),now.getDate());
//getMonth 从0-11 所以真实月份要+1, getDate 注意与 getDay的区别,getDate为日, getDay 为周
//计算开始日期 var _form_date =crmForm.all.new_begindate.DataValue ; //计划开始日期加8 小时 var form_date = new Date(_form_date.setHours(_form_date.getHours()+8)); var form_ms =Date.UTC(form_date.getFullYear(), form_date.getMonth(),form_date.getDate()); if(form_ms < now_ms) { //如果计划开始日期小于当前日期禁止保存 crmForm.all.new_begindate.DataValue = new Date(); crmForm.all.new_enddate.DataValue = new Date(); alert("计划开始日期不能小于当前日期!"); }

 

CRM 日期类型的一些处理JS

标签:date()   计划   class   日期   开始   处理   color   nbsp   get   

原文地址:http://www.cnblogs.com/BinBinGo/p/6129691.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!