js 獲取當前時間並格式化


var now = new Date();                                                                                                     
            var year = now.getFullYear(); //得到年份
            var month = now.getMonth();//得到月份
            var date = now.getDate();//得到日期
            month = month + 1;
            if (month < 10) month = "0" + month;
            if (date < 10) date = "0" + date;
            var time = year + "-" + month + "-" + date;    //(格式化"yyyy-MM-dd")     


//input 輸入框初始化
<input type="date" id="data">

<script type="text/javascript">
        $(function () {
            data.value = time ;
        })
 </script>                                                                                                               

 

                                                                                                                                        
https://github.com/jacwright/date.format 通過這個地址下載data.format.js 
在js頁面引用

//用法
var myDate = new Date();
alert(myDate.format('Y-m-d')); // Outputs "2020-01-01"
alert(myDate.format('Y-m-d H:i:s')); // Outputs "2020-01-01 15:24:30"
alert(myDate.format('M jS, Y')); // Outputs "Nov 26th, 2017"
alert(myDate.format('\\T\\o\\d\\a\\y \\i\\s d-m-Y')); // Outputs "Today is 26-11-2017"

 


免責聲明!

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



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