此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
相關用法
- HTML DOM contains()用法及代碼示例
- HTML DOM getBoundingClientRect()用法及代碼示例
- HTML DOM execCommand()用法及代碼示例
- HTML DOM removeNamedItem()用法及代碼示例
- HTML DOM requestFullscreen()用法及代碼示例
- HTML DOM item()用法及代碼示例
- HTML DOM createDocumentFragment()用法及代碼示例
- HTML DOM removeEventListener()用法及代碼示例
- HTML DOM replaceChild()用法及代碼示例
- HTML DOM hasAttributes()用法及代碼示例
- HTML DOM renameNode()用法及代碼示例
- HTML DOM removeChild()用法及代碼示例
- HTML DOM compareDocumentPosition()用法及代碼示例
- HTML DOM focus()用法及代碼示例
- HTML DOM hasChildNodes()用法及代碼示例
注:本文由純淨天空篩選整理自Mahadev99大神的英文原創作品 HTML | DOM console.trace() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。