moment.js实现客户端显示本地时间

阅读更多
$(document).ready(function(){
  $('.local_time').text(moment.utc($('.local_time').text()).local().format('YYYY-MM-DD HH:mm:ss'));
});
 
$(document).ajaxComplete(function(){
  $('.local_time').text(moment.utc($('.local_time').text()).local().format('YYYY-MM-DD HH:mm:ss'));
});
 
<%= order_item.shippings.first.try(:updated_at) %>

你可能感兴趣的:(moment.js实现客户端显示本地时间)