我有一个由系统生成的日期时间字符串。 例如:2013年2月8日星期五09:47:57 GMT +0530(IST) 我需要提取日期(02/08/2013)和时间(09:47 am)并将其存储在两个变量中。有没有一种有效的方法来使用Javascript?
编辑: 我写了以下代码。
var day = elementDate.getDate(); //Date of the month: 2 in our example
var monthNo = elementDate.getMonth(); //Month of the Year: 0-based index, so 1 in our example
var monthDesc = {'0':'January', '1':'February'}; //, "March", "April", "May", "June", "July", "August", "September", "October", "November", "December");
var year = elementDate.getFullYear() //Year: 2013
var hours = elementDate.getHours();
var mins = elementDate.getMinutes();
var lDateValue = (year.toString() + "-" + monthNo.toString() + "-" + day.toString());
document.getElementById("lDate").value = lDateValue;
我的HTML中有这个:
<input type="date" name="name" id="lDate" class="custom" value=""/>
<input type="time" name="name" id="lTime" class="custom" value="" />
字段未更新。 我错过了什么吗?
答案 0 :(得分:18)
Date构造函数非常擅长从字符串创建日期:
使用以下内容:
// This could be any Date String
var str = "Fri Feb 08 2013 09:47:57 GMT +0530 (IST)";
var date = new Date(str);
这将使您可以访问所有日期函数(MDN)
例如:
var day = date.getDate(); //Date of the month: 2 in our example
var month = date.getMonth(); //Month of the Year: 0-based index, so 1 in our example
var year = date.getFullYear() //Year: 2013
答案 1 :(得分:1)
您可以在方法Date constructor和.toLocaleDateString()的帮助下,使用.toTimeString()直接获取日期和时间字符串-
let dateStr =new Date("Wed Aug 05 18:11:48 UTC 2020")
dateStr.toLocaleDateString()
// "05/08/2020"
dateStr.toTimeString()
// "23:41:48 GMT+0530 (India Standard Time)"