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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。