jQuery 中的 strtotime,具有通用日期

strtotime in jQuery with generic dates

我正在尝试将“16/8/2015”(d/m/Y) 之类的日期转换为 unix 时间戳。
我所找到的只是用于转换日期的代码,例如“2015 年 6 月 18 日”,其中:

Date.parse("18-Jun-2015")

哪个有效,但这不是我需要的。
转换其他类型的日期格式有什么线索吗?

尝试:

var date = new Date('2015-08-16');