The example of this article describes the method of JS simple implementation of string date. Share to everyone for your reference, specific as follows:
<script>
var s=["2008-8-1", "2009/9/2", "10/3/2010"];
for (Var i=0;i<s.length;i++) {
var d = string2date (S[i]);
var year = D.getfullyear ();
var month = D.getmonth () +1;
var date = D.getdate ();
var datestr = year+ "year" +month+ "month" + date+ "Day";
Alert ("Original string: +s[i]+" \ n) Direct: "+ new Date (S[i]) +" \ n "by method:" +datestr);
}
function String2date (str) {return
new Date (Date.parse (Str.replace (/-/g, "/"));
}
</script>
More readers interested in JavaScript-related content can view the site topics: "JavaScript Search Algorithm Skills Summary", "JavaScript animation effects and Skills summary", "JavaScript Error and debugging skills summary", " JavaScript data structure and algorithm skills summary, "javascript traversal algorithm and Skills summary" and "JavaScript Mathematical Computing Usage Summary"
I hope this article will help you with JavaScript programming.