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.
我有这样的字符串"8:00 Am"我需要将它转换为时间格式我怎么能用jquery做到这一点
"8:00 Am"
你可以使用date.js
例子
Date.parseExact("8:00 AM", "hh:mm tt");
如果您正在使用,请date.js尝试
date.js
Date.parseExact("8:00 Am", "hh:mm tt");
如果您正确加载了 javascript,这将为您提供日期。
工作演示
var time = Date.parse('8:00 AM'); alert(time);