// 转换日期格式
str = str.replace(/-/g, '/') // "2010/08/01"
// 创建日期对象
var date = new Date(str)
// 加一天
date.setDate(date.getDate() + 1)
var d=new Date()
d.setTime('1379433600')
d.format('yyyy-mm-dd hh:MM:ss')
这是我在控制台上的操作,你看看:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<script>
//var str="2016-12-13 17:04:21"
var str=new Date().getTime()
document.write(new Date(str))
</script>
</body>
</html>
日期字符串转换为日期格式:
new Date(这里放字符串)//当然要正确格式的字符串不然非法