JavaScript时间转换处理函数

/** * 将格式为yyyy-MM-dd hh:mm:ss.S的字符串转为Date * @param dateString 时间字符串 */ function convertToDate(dateString){ return new Date(dateString.replace(/\-/g,"https://www.jb51.net/")); } /** * 比较时间 * @param date1 * @param date2 */ function compareDate(date1, date2) { return date1.getTime() - date2.getTime(); }

以上就是本文给大家分享的全部内容了,希望大家能够喜欢。

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wgjxyg.html