我有一个问题。 所以我从服务器获得一个带有日期时间字符串的变量,如下所示:'31 / 08/2015 13:24'。 如何从这个字符串中分别提取日期和时间?
答案 0 :(得分:1)
您可以拆分字符串:
var dateTime = '31/08/2015 13:24'.split(" ");
console.log(dateTime[0]); //date
console.log(dateTime[1]); //time
或使用js Date对象获取日,月,年,小时等:
var dateTime = new Date('31/08/2015 13:24');