标签:
1 function time(){ //页面时间戳转换成时间 2 $(".time").each(function(){ 3 var time = $(this).text(); 4 var times = new Date(parseInt(time)).toLocaleString().replace(/年|月/g, "-").replace(/日/g, " "); 5 $(this).text(times); 6 }); 7 }
标签:
原文地址:http://www.cnblogs.com/isungge/p/4712651.html