JavaScript Replace and split implementation date automatically split day

Source: Internet
Author: User

HTML page

The code is as follows Copy Code

<input onchange= "setdate (this.value);" Type= "text" id= "Sell_time" size= "maxlength="/>
<input type= "text" id= "Sell_time_year" size= "ten"/>
<input type= "text" id= "Sell_time_month" size= "ten"/>

JavaScript code

The code is as follows Copy Code

function Setdate (value)
{
 if (value = = "")
 {
  alert (' Please choose the opening date! ');   
 }
 else
 {
  var value = Value.replace (' Year ', '-');
 & Nbsp;var value = value.replace (' month ', '-');
  var Datearray = value.split ('-');   
  
  if (datearray[1]<=
  {
   document.getelementbyid ("Sell_time_year"). Value =datearray[0];
   document.getelementbyid ("Sell_time_month"). Value =datearray[1].replace (' 0 ', ');
  }
  else
  {
   alert (' date format is incorrect, standard format is: 2012-01-01 or January 1, 2012 ');
&NBSP;&NBSP}
 
}

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.