Home > Web Front-end > JS Tutorial > body text

JS simple method to convert String to Date_javascript skills

WBOY
Release: 2016-05-16 15:12:39
Original
2299 people have browsed it

The example in this article describes how to simply convert String to Date using JS. Share it with everyone for your reference, the details are 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+" 年 "+month+" 月 "+ date+ " 日";
  alert("原始串:"+s[i]+"\n直接转:"+ new Date(s[i])+"\n用方法转:"+dateStr);
}
function string2date(str){
  return new Date(Date.parse(str.replace(/-/g,  "/")));
}
</script>

Copy after login

Readers who are interested in more JavaScript-related content can check out the special topics on this site: "Summary of JavaScript search algorithm techniques", "Summary of JavaScript animation special effects and techniques", "Summary of JavaScript errors and debugging techniques", "Summary of JavaScript data structures and algorithm techniques", "Summary of JavaScript traversal algorithms and techniques" and "JavaScript Mathematics Summary of operation usage

I hope this article will be helpful to everyone in JavaScript programming.

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template