获取当前时间,时间一天天递减

388 ℃
function getDate(index) {
    var date = new Date(); //当前日期
    var newDate = new Date();
    newDate.setDate(date.getDate() + index); //官方文档上虽然说setDate参数是1-31,其实是可以设置负数的
    var time = newDate.getFullYear() + "/" + (newDate.getMonth() + 1) + "/" + newDate.getDate();
    return time;
}

function getDate2(index) {
    var date = new Date(); //当前日期
    var newDate = new Date();
    newDate.setDate(date.getDate() + index); //官方文档上虽然说setDate参数是1-31,其实是可以设置负数的
    var time = (newDate.getMonth() + 1) + "-" + newDate.getDate();
    return time;
}

//获取时间递减
data: [getDate2(-7), getDate2(-6), getDate2(-5), getDate2(-4), getDate2(-3), getDate2(-2), getDate2(-1)]

一款由Iconscout推出的高质量、一致性的SVG和Web字体图标库—— Unicons

一款专门为Web设计和前端开发提供了丰富的矢量图标资源库——FontAwesome

推荐一套开源、高质量的 SVG 图标库——Heroicons

mysql语法根据指定条件做一个数据汇总接口

宝塔Nginx配置只允许指定网址访问接口

上面是“获取当前时间,时间一天天递减”的全面内容,想了解更多关于 内容,请继续关注web建站教程。

当前网址:https://m.ipkd.cn/webs_160.html

声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!

jquery中常用事件介绍
如何利用mysql语法修改时间字段
vuejs如何实现兄弟组件传参
Python语法如何实现pdf转word功能
jquery如何删除标签和清空标签