码迷,mamicode.com
首页 > 其他好文 > 详细

Easyui的DateBox日期格式化

时间:2015-09-29 23:19:33      阅读:324      评论:0      收藏:0      [点我收藏+]

标签:

formatter函数使得选择日期后将其格式化为我们需要的格式,parser函数在选择好日期后告诉控件如何去解析我们自定义的格式。
定义如下:
formatter:A function to format the date, the function take a ‘date‘ parameter and return a string value.
parser:A function to parse a date string, the function take a ‘date‘ string and return a date value.
如将日期格式化为yyyy-mm-dd的格式:
$(‘#dd1‘).datebox({
    formatter: function(date){ return date.getFullYear()+‘-‘+(date.getMonth()+1)+‘-‘+date.getDate();},
    parser: function(date){ return new Date(Date.parse(date.replace(/-/g,"/")));}
});

Easyui的DateBox日期格式化

标签:

原文地址:http://www.cnblogs.com/zkwarrior/p/4847428.html

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