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-guru 可以提供帮助吗?
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