Both are different. ISO is standard format time. UTC is the primary time standard by which the world regulates clocks and time. ISO also supports ms
in its format.
So if you want to send data to the server, send the ISO, because ISO is the standard format:
var date = new Date();
sendDate(date.toISOString());
You can also use toISOString
in IE7 polyfill.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…