javascript时间扩展类dateplus.zip
javascript 极简时间扩展类 var dateplus=(new Date()).y(2014).m(10).d(27).h(15).M(2); 示例代码: require('dateplus'); // get a Date instance by splited number string (only for order by year month day hour minute second microsecond) var d=Date.parseCN('2014.1.1 12:00'); // set month to 10 d.m(10); // set day 1 1=2 d.d(' 1') // set hour 12-1=11 d.h('-1'); // set hour 11-1=10 the same d.h(-1); // short for d.getTime(); //1412215200000 d.t(); // d.getTime(); with out microseconds // 1412215200 d.T(); // date format string // 2014-10-02 10:00:00:000 d.format('yyyy-mm-dd hh:MM:ss:SSS'); // default date format string // Date.formats.default (yyyy-mm-dd hh:MM) // 2014-10-02 10:00 d.format(); // other short name for format // Date.formats.date='yyyy-mm-dd' // 2014-10-02 d.format('date'); // Date.formats.long='yyyy-mm-dd\u00a0hh:MM:ss' // 2014-10-02 10:00:00 d.format('long'); // you can custom by modify Date.formats Date.formats.micro='yyyy-mm-dd\u00a0hh:MM:ss:SSS'; // 2014-10-02 10:00:00:000 d.format('micro'); // copy a instance var d2=d.clone(); // chain var d3=d.clone().y(2014).m(10).d(27).h(15).M(2); 标签:dateplus
- 1
- 粉丝: 790
- 资源: 3万+
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助