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


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


D3.js中的d3.now()函數用於根據性能返回當前時間。javascript中可用的now()函數;如果日期不可用,則返回日期。now()函數用於返回當前時間。

用法:

d3.now()

參數:它不帶任何參數。

返回值:它返回dataType字符串的時間。

注意:在不同的機器上,輸出可能會有所不同。



下麵給出了上述函數的一些示例。

範例1:

<!DOCTYPE html> 
<html lang="en"> 
<head> 
  <meta charset="UTF-8"> 
  <meta name="viewport"
        content="width=device-width, 
                 initial-scale=1.0"> 
  <title>Document</title> 
</head> 
<style> 
</style> 
<body> 
  <!-- Fetching from CDN of D3.js -->
  <script type = "text/javascript" 
          src = "https://d3js.org/d3.v4.min.js"> 
  </script> 
  <script> 
    console.log("Current time using d3.now():") 
    console.log(d3.now()) 
    console.log(d3.now()) 
    console.log(d3.now()) 
    console.log(d3.now()) 
    console.log(d3.now()) 
    console.log(d3.now()) 
    console.log(d3.now()) 
  </script> 
</body> 
</html>

輸出:

範例2:請注意性能上的差異。now()和d3.now()。

<!DOCTYPE html> 
<html lang="en"> 
<head> 
  <meta charset="UTF-8"> 
  <meta name="viewport" 
        content="width=device-width, 
                 initial-scale=1.0"> 
  <title>Document</title> 
</head> 
<style> 
</style> 
<body> 
  <!-- Fetching from CDN of D3.js -->
  <script type = "text/javascript" 
          src = "https://d3js.org/d3.v4.min.js"> 
  </script> 
  <script> 
    console.log("Current time using d3.now():") 
    console.log(d3.now()) 
    console.log("Current time using performance.now():") 
    console.log(performance.now()) 
      
    console.log("Current time using performance.now():") 
    console.log(performance.now()) 
    console.log("Current time using d3.now():") 
    console.log(d3.now()) 
  </script> 
</body> 
</html>

輸出:




相關用法


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