Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次の形式で日付を取得しています
20.04.2013 09:33:34
として作りたい2013.04.20 09:33:34
2013.04.20 09:33:34
javascriptまたはjqueryを使用してこれを行う方法はありますか?
これを行う必要があります
var date = "20.04.2013 09:33:34".split(/[ .]/); var newData = date[2] + "." + date[1] + "." + date[0] + " " + date[3]; console.log(newData); // Outputs: "2013.04.20 09:33:34"