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 }
时间: 2024-10-10 17:53:08
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 }