Home > Article > Web Front-end > Introduction to the method of converting String to Date using JS
This article mainly introduces the simple method of converting String to Date using JS, involving techniques related to converting JavaScript string and date. Friends in need can refer to the following
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>
The above is the detailed content of Introduction to the method of converting String to Date using JS. For more information, please follow other related articles on the PHP Chinese website!