我正在以Json格式获得以下
09\/14\/2013 14:00
我想在日期中添加分钟并将值显示为字符串 我应该将它转换为日期时间,添加并转换回来?如果是,那怎么样?
答案 0 :(得分:2)
试试此代码
var dat = new Date('09/14/2013 14:00'); // Change the string to Date
alert(dat);
alert(dat.getMinutes()); // Get the minutes of your dateTime
dat.setMinutes('23'); // Set the minutes you wish
alert(dat);
选中此JSFiddle
答案 1 :(得分:1)
在Javascript中将此转换为Date()
对象后,您可以使用getMinutes()
函数获取日期中的分钟数,执行逻辑以添加分钟数,然后使用setMinutes()
函数。