问题
I want to get the current UTC date with Javascript. How can I do this? There seems to be methods for getting the time in UTC:
date.getUTCHours();
How can I get the date?
回答1:
There are UTC getters for date, day, full year, hour, minutes, month, etc. To get the date specifically, you might find getUTCDate useful.
Without seeing more of your code, I can only suggest this:
date.getUTCDate();
来源:https://stackoverflow.com/questions/2650328/how-to-fetch-utc-dates-with-javascript