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


HTML DOM Window performance屬性用法及代碼示例


這個表現財產申報表a性能對象,可以進一步用於收集有關當前文檔的性能信息。

用法:

var per = window.performance

返回值:它返回一個性能對象。

例:本示例說明如何使用此屬性獲取文檔的性能對象。

HTML

<!DOCTYPE HTML> 
<html> 
  
<body style="text-align:center;"> 
    <h1 style="color:green;"> 
        GeeksforGeeks 
    </h1> 
  
    <p> 
        HTML | window performance property 
    </p> 
  
  
    <button onclick="Geeks()"> 
        Click Here 
    </button> 
  
    <script> 
        function Geeks() { 
            console.log(window.performance); 
        } 
    </script> 
</body> 
  
</html>

輸出:



  • 單擊按鈕之前:

  • 單擊按鈕後:在控製台中,可以看到性能對象。

支持的瀏覽器:

  • 穀歌瀏覽器
  • Edge
  • Firefox
  • Safari
  • Opera
  • IE瀏覽器

相關用法


注:本文由純淨天空篩選整理自taran910大神的英文原創作品 HTML DOM Window performance Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。