zoukankan      html  css  js  c++  java
  • JS时间的获得

     <script type="text/javascript">
            var thedate = new Date();
            alert('LocaleString:' + thedate.toLocaleString()); //将时间转换成本地的字符串表示
            alert('LocaleDateString:' + thedate.toLocaleDateString());//将年月日转换成本地的字符串表示
            alert('LocaleTimeString:' + thedate.toLocaleTimeString());//将时间转换成本地的字符串表示
            alert('Date:' + thedate.getDate());//获取当前的日
            alert('Day:' + thedate.getDay());
            alert('Year:' + thedate.getFullYear());//获取当前的年份
            alert('Hours:' + thedate.getHours());//获取当前的小时
            alert('Milliseconds:' + thedate.getMilliseconds());//获取当前的毫秒
            alert('Minutes:' + thedate.getMinutes());//获取当前的分钟
            alert('Month:' + (thedate.getMonth()+1));//如果用整数表示月份的话,0代表1月,1代表2月...11代表12月

            alert('Seconds:' + thedate.getSeconds());//获取当前秒

    </script>

  • 相关阅读:
    Scrapy框架实现持久化存储
    Scrapy框架的介绍和基本使用
    处理页面动态加载数据
    爬虫数据解析
    Python爬虫基础
    Flask详解(下篇)
    Flask详解(中篇)
    CentOS 中的性能监测命令vmstat
    CentOS 7安装MySQL 8.0.15
    CF B.Kind Anton(4月8号)
  • 原文地址:https://www.cnblogs.com/duanlinlin/p/3010827.html
Copyright © 2011-2022 走看看