//字符串转换为时间戳

//字符串转换为时间戳
var date="2014-12-06";
date = new Date(Date.parse(date.replace(/-/g, "/")));
date = date.getTime();

    推荐阅读