当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


d3.js d3.timeDay()用法及代码示例


D3.js中的d3.timeDay()函数用于以“YYYY-MM-DD”格式返回日期。

用法:

d3.timeDay(Date);

参数:该函数接受参数“Date”。


返回值:此函数以特定格式返回给定日期。

以下程序说明了D3.js中的d3.timeDay()函数:
示例1:

<!DOCTYPE html> 
<html> 
  
<head> 
    <script src= 
        "https://d3js.org/d3.v4.min.js"> 
  </script> 
</head> 
  
<body> 
  
    <script> 
        // Initialising a current date 
        var now = new Date; 
  
        // calling d3.timeDay() 
        var day = d3.timeDay(now); 
  
        // Getting the date 
        console.log(day); 
    </script> 
</body> 
  
</html>

输出:

"2019-07-19T18:30:00.000Z"

示例2:下面的代码计算两个给定日期之间的差额。

<!DOCTYPE html> 
<html> 
  
<head> 
    <script src= 
            "https://d3js.org/d3.v4.min.js"> 
  </script> 
</head> 
  
<body> 
  
    <script> 
        // Initialising start and end date 
        var start = new Date(2015, 02, 01); 
        var end = new Date(2015, 02, 04); 
  
        // Calling the timeDay() function to 
        // calculate the difference between two dates 
        var a = d3.timeDay.count(start, end); 
  
        // Getting the calculated dates 
        console.log(a); 
    </script> 
</body> 
  
</html>

输出:

3


相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 D3.js | d3.timeDay() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。