js 获取当前时间前几分钟


function getNowFormatDate() {
            var date = new Date();
            var seperator1 = "-";
            var seperator2 = ":";
            //前十分钟时间
             var minutes=parseInt("10");  

          var   interTimes=minutes*60*1000;

          var interTimes=parseInt(interTimes);  
             date=new   Date(Date.parse(date)-interTimes);
            
            var month = date.getMonth() + 1;
            var strDate = date.getDate();
            var hour = date.getHours();
            var minutes = date.getMinutes();
            if (month >= 1 && month <= 9) {
                month = "0" + month;
            }
            if (strDate >= 0 && strDate <= 9) {
                strDate = "0" + strDate;
            }
            if (hour >= 0 && hour <= 9) {
                    hour = "0" + hour;
            }
            if (minutes >= 0 && minutes <= 9) {
                    minutes = "0" + minutes;
            }
            var currentdate = date.getFullYear() + seperator1 + month + seperator1 + strDate
                    + " " + hour + seperator2 + minutes
                    + seperator2 + date.getSeconds();
            return currentdate;
        }

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM