當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


d3.js d3.utcDay()用法及代碼示例


D3.js中的d3.utcDay()函數用於以協調世界時(UTC)返回“YYYY-MM-DD”格式的日期。

用法:

d3.utcDay(Date);

參數:該函數接受參數“Date”。


返回值:此函數以特定格式返回給定日期。

以下程序說明了D3.js中的d3.utcDay()函數:
示例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.utcDay() 
        var day = d3.utcDay(now); 
  
        // Getting the date 
        console.log(day); 
    </script> 
</body> 
  
</html>

輸出:

"2019-07-20T00:00: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 utcDay() function to 
        // calculate the difference between two dates 
        var a = d3.utcDay.count(start, end); 
  
        // Getting the calculated dates 
        console.log(a); 
    </script> 
</body> 
  
</html>

輸出:

3


相關用法


注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 D3.js | d3.utcDay() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。