我有一個字符串'28 -Dec-14'在一個變量中。我需要將此字符串轉換爲日期格式。 我的代碼是通過選定的UIDatePickerjquery字符串到日期轉換
<body>
<input type="text" id="from" readonly="" />
<input type="text" id="to" readonly="" onchange="checkDate(this);"/>
</body>
這裏日期
我的劇本是
function checkDate(obj)
{
var from = $('#from').val();
var to = obj.value;
alert(to);
var date = to.split("-")[0],
month = to.split("-")[1],
year = to.split("-")[2];
var d = new Date (year,month,date);
alert(d);
}
這裏year=14,month=Dec,and date=28
可以使用date.js jQuery插件來完成你的任務之後的日期範圍。 –
yes.its working –