IE, 360, low-time version of the browser display problems NaN

Disclaimer: This article is a blogger original article, follow the CC 4.0 BY-SA copyright agreement, reproduced, please attach the original source link and this statement.
This link: https://blog.csdn.net/qq_40338997/article/details/102738537

The format conversion xxxx-xxxx xxxx / xx / xx to the conversion code is as follows:

'Xxxx-xxxx' are each browser can not be identified, using new Date () to generate the correct date is correct usage object 'xxxx / xx / xx'.

 

function AdjustTime(time) {
    return time.replace(/\-/g, "\/");
}


layui.util.toDateString(AdjustTime(d.FlightDateTime), 'yyyy-MM-dd')

Guess you like

Origin blog.csdn.net/qq_40338997/article/details/102738537