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.
如果我有年份(比如 2013 年)和 ISO 周(比如 35 年),我如何在纯 JavaScript 中获取开始和结束日期时间?
是否有任何特定的库用于处理 JavaScript 中的 DateTime?
至于图书馆,有http://www.datejs.com/ 。或http://phpjs.org/functions/date/。
尝试
var date = new Date('01 Jan ' + year); date.setDate(35 * 7); date.setDate(date.getDate() - date.getDay()) //it will give the start of the week