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


Node.js console.dir()用法及代碼示例


console.dir()方法用於獲取指定對象的對象屬性列表。這些對象屬性還具有子對象,您可以從中檢查更多信息。

用法:

console.dir( object )

參數:此方法接受包含對象元素的單個參數。

範例1:


<!DOCTYPE html>
<html>
  
<head>
    <style>
        h1 {
            color:green;
        }
        body {
            text-align:center;
        }
    </style>
</head>
  
<body>
  
    <h1>GeeksforGeeks</h1>
      
    <h2>console.dir() Method</h2>
      
    <h3>
        Open console using F12 or Ctrl+Shift+I
    <h3>
  
    <script>
        var geek = { 
            course:"DSA", 
            price:"5000" 
        };
          
        console.dir(geek);
    </script>
</body>
  
</html>

輸出:

範例2:


<!DOCTYPE html>
<html>
<head>
    <style>
        h1 {
            color:green;
        }
        body {
            text-align:center;
        }
    </style>
</head>
  
<body>
  
    <h1>GeeksforGeeks</h1>
      
    <h2>console.dir() Method</h2>
      
    <h3>
        Open console using F12 or Ctrl+Shift+I
    <h3>
  
    <script>
        console.dir(document.body);
        console.log(document.body);
    </script>
</body>
  
</html>         

輸出:




相關用法


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