我如何将像这样的日期12092008转换为像这样的Unix时间1221215809

最佳答案

您可能要使用以下内容:

function covertToUnixTime(yourDate) {
    return new Date(yourDate.substring(4, 8) + '/' +
                    yourDate.substring(2, 4) + '/' +
                    yourDate.substring(0, 2)).getTime() / 1000;
}

covertToUnixTime('12092008');   // Returns: 1221170400

09-25 20:08