How to make Date work in IE11 when using this type of string such as '2022-05-06 12:00:00'?
I have found that new Date('2022-05-06 12:00:00') didn't work in IE11,only new Date('2022/05/06 12:00:00') works
However,I have writen a lot of codes like that,so how can I make the Date fit the IE11 by rewrite the Date Class?