文件名称:把时间戳转换为日期格式的js代码
文件大小:32KB
文件格式:PDF
更新时间:2024-01-22 23:09:46
js js代码 时间戳
代码如下:[removed] function getLocalTime(nS) { return new Date(parseInt(nS) * 1000).toLocaleString().replace(/:\d{1,2}$/,’ ‘); } alert(getLocalTime(1293072805)); [removed]结果是2010年12月23日 10:53第二种 代码如下:[removed] function getLocalTime(nS) { return new Date(parseInt(nS) * 10