javascript 獲取當前日期 月份 時間


<script type="text/javascript">

function getDate() {
var date = new Date(); //得到當前日期原始模式
var newyear = date.getFullYear(); //得到當前日期年份
var newmonth = date.getMonth() + 1; //得到當前日期月份(注意: getMonth()方法一月為 0, 二月為 1, 以此類推。)
var day = date.getDate(); //得到當前某日日期(1-31)
newmonth = (newmonth < 10 ? "0" + newmonth : newmonth); //10月以下的月份自動加0
//var newdate = newmonth + "月" + day + "日";
var newdate = newyear + "-" + newmonth + "-" + day;
           return newdate;
}
</script>


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM