How to change Date format according to the country

后端 未结 3 1013
半阙折子戏
半阙折子戏 2021-01-21 22:29

I have a requirement to change the order of DD/MM/YYYY tags according to a users country .

http://en.wikipedia.org/wiki/Date_format_by_country

The way that I was

3条回答
  •  隐瞒了意图╮
    2021-01-21 23:06

    If you want to change the format of a date on the client side, you can try the toLocaleString function on the Date object in JavaScript. The toLocaleString will change the format based on the client OS's settings for their location. You also would not need to have a table with the country and date format.

    This can be done without the need for jQuery or any additional plugin.

提交回复
热议问题