Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有字符串 08082012,现在我需要将其转换为 js/jquery 中的预期日期格式,例如格式为 M/d/y。所以结果将是 2012 年 8 月 8 日。
你们能建议我实现的可能方法吗?提前致谢。
如果您知道,它只能让这 4 种不同的格式使用子字符串。
date = "08082012"; if(date.length == 8) { new_date = date.substring(0,2) + "/" + date.substring(2,4) + "/" + date.substring(4); } if(date.length == 7) ...