これらの日付時刻値の形式をご覧ください:上記の例でJavaScriptでは、日付形式の値をある形式から別の形式に変換する方法はありますか。
var from = "2012-01-13 T11:00:00";
var to = "13 Jan 2012 11:00am";
を、両方とも、形式「に」の値にフォーマット「から」に値を変換するJavaScript関数を作成する方法テキストの日付時刻の値です。
var to = convertDateTime(from);
function convertDateTime(from)
{
// how to implement this?
}
多くのおかげで、この記事で
[JavaScriptで書式指定を使用して文字列をdatetimeに変換するにはどうすればよいですか?](http://stackoverflow.com/questions/476105/how-can-i-convert-string-to-datetime-with- format-specification-in-javascript) –
この投稿がお役に立てば幸いです。 http://stackoverflow.com/questions/758999/converting-dates-in-javascript – Learner