JavaScript string to date gets the day of the week

Source: Internet
Author: User

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

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.