moment
moment.locale('zh-cn'); $('.J_timeago').each(function () { var time_str = $(this).text(); if ( moment(time_str, "YYYY-MM-DD HH:mm:ss", true).isValid() ) { $(this).text(moment(time_str).fromNow()); } });