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


HTML DOM console.trace()用法及代碼示例


此console.trace()方法用於顯示跟蹤,該跟蹤表示代碼在特定點如何結束。

用法:

console.trace( label )

參數:此方法接受單個參數標簽。


Example:

<!DOCTYPE html> 
<html> 
    <head> 
        <title>console.trace() Method</title> 
        <style> 
            h1 { 
                color:green; 
            } 
            body { 
                text-align:center; 
            } 
        </style> 
    </head> 
    <body> 
        <h1>GeeksforGeeks</h1> 
        <h2>console.trace() Method</h2> 
        <p>Press F12 to view the result</p> 
        <button onclick="Function()">Start Trace</button> 
        <script> 
            function Function() { 
              OtherFunction(); 
            } 
            function OtherFunction() { 
              console.trace(); 
            } 
        </script> 
      
    </body> 
</html>

輸出:

支持的瀏覽器:console.trace()方法支持的瀏覽器如下:

  • chrome
  • Internet Explorer 11.0
  • Firefox 10.0
  • Opera
  • Safari 4.0


相關用法


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