我尝试过以下操作,但输出并不像预期的那样。
title = "Jun 25 2014";
var n = new Date(title);
var dateformat = n.toLocaleDateString();
答案 0 :(得分:1)
使用以下代码获取输出
var title = "Jun 25 2014";
var n = new Date(title);
if(n.getMonth()+1 < 10)
var month = '0'+(n.getMonth()+1);
var date = month+'/'+n.getDate()+'/'+n.getFullYear();
alert(date);