I am looking for an equivalent in Chrome to the "break on all errors" functionality of Firebug.
(我正在寻找Chrome中与Firebug“破解所有错误”功能相同的功能。)
In the Scripts tab, Chrome has a "pause on all exceptions", but this is not quite the same as breaking on all errors.(在“脚本”选项卡中,Chrome有一个“暂停所有异常”,但这与打破所有错误并不完全相同。)
For instance, when loading a page with the following code, I would like Chrome to break on the line foo.bar = 42
.
(例如,当使用以下代码加载页面时,我希望Chrome在foo.bar = 42
行foo.bar = 42
。)
Instead, even when enabling the "Pause on all exceptions", I don't get the expected result.(相反,即使启用“暂停所有异常”,我也无法获得预期的结果。)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<script type="text/javascript">
function doError() {
foo.bar = 42;
}
window.onload = function() {
try {
doError();
} catch (e) {
console.log("Error", e);
}
}
</script>
</head>
<body>
</body>
</html>
You can try the code pasted above on this page or using this jsFiddle .
(您可以尝试在此页面上粘贴的代码或使用此jsFiddle 。)
ask by avernet translate from so
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…