The server returns the date string in the following format:
2015-01-20 12:03:122015-01-19 19:10:002015-01-19 12:00:002015-01-19 08:41:002015-01-16 12:23:46
Ask to determine if the day of the week turns into the following format:
First, convert the string into a date format and look at some of the methods below. The simplest
var str = ' 2015-01-20 12:03:12 ';d atestr = Datestr.replace (/-/g, '/'); var date = new Date (DATESTR);
OK. Call the Getday () method after turning into a date format to determine the number of weeks.
var day = Date.getday ();
The complete method is as follows:
function GetDayOfWeek (datestr) {var dayOfWeek = "";d atestr = Datestr.replace (/-/g, '/'); var date = new Date (DATESTR); Switch (Date.getday ()) {Case 0:dayofweek = ' Sunday '; break;case 1:dayofweek = ' Monday '; break;case 2:dayofweek = ' Tuesday '; Break;case 3: DayOfWeek = ' Wednesday '; break;case 4:dayofweek = ' Thursday '; break;case 5:dayofweek = ' Friday '; break;case 6:dayofweek = ' Saturday '; break;} return DayOfWeek;}
O (∩_∩) o~
JavaScript string to date gets the day of the week