reverse date javascript from yyyy/mm/dd to dd/mm/yyyy

前端 未结 1 2023
故里飘歌
故里飘歌 2021-01-18 09:23

I making an asp project and the date is displayed as yyyy/mm/dd but when the user press on the edit button for the form i need to replace the date format with dd/mm/yyyy

相关标签:
1条回答
  • 2021-01-18 10:01
    function convertDigitIn(str){
       return str.split('/').reverse().join('/');
    }
    
    0 讨论(0)
提交回复
热议问题