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.
私は本当にここで立ち往生しています。基本的に、日付パターンを変更する必要があります。
YYYY-MM-DD
に
DD-MM-YYYY
助けてくれるjqueryの第一人者はいますか?
var date1 = "YYYY-MM-DD"; var n = date1.split("-"); date1 = n[2] + "-" + n[1] + "-" + n[0];
var split = $(date).split('-'); var newDate = split[2] + '-' + split[1] + '-' +split[0];
date可能性のある場所: 2013-01-09。
date