我不能让Firebug的console.trace()
给出任何输出。我错误地使用它了吗?
我在Ubuntu 14.04上使用Firefox 41.0.1和Firebug 2.0.12。它在Windows 7上的Firefox 41.0.1中运行良好。
我已将a test file上传到neocities,以便您可以尝试一下。这是测试文件的内容:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<script type="text/javascript">
function myFun1 (p1) {
var res = myFun2("there");
return res;
}
function myFun2 (p2) {
console.trace();
return "hi there"
}
console.log("start");
var res = myFun1("hi");
console.log("res: ", res);
console.log("end");
</script>
</body>
</html>
答案 0 :(得分:1)
根据thread in the Firebug discussion group,这是Firebug 2.0.12中的一个错误,报告为issue #7948并在Firebug 2.0.13中修复。