JavaScript console.error
console
是一个积极用于打印的对象。这个 console
对象还有其他部分,例如 console.log()
和 console.error()
。
检查 JavaScript 中 console.error()
的使用
我们将定义一个具有 id
名称的变量。然后检查那个 id
是否存在。
console.error()
的结果是一个红色的 warning
,其中包含有信息。当出现一些不可避免的错误时,它可以发挥重要作用。
就像缺少元素、数字除以 0
、获取 API 失败或数组超出其内存限制一样。见例子;
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>test</title>
<script src="https://code.jquery.com/jquery-3.5.0.js"></script>
</head>
<body>
<div id=""></div>
</body>
</html>
const element = document.getElementById('id1');
if (element == null) {
console.error('Element doesn\'t exist.');
} else {
console.log('It\'s present');
}
输出:
我们没有在我们的 HTML
结构中初始化 id=id1
。因此没有找到该元素,console.error()
以令人震惊的色调显示其消息。
评估 JavaScript 中 console.log()
的使用
使用 console.log()
将返回消息中性。只有当代码片段满足任何有效任务时,此消息才会起作用。
了解何时启动 console.log()
或 console.error()
至关重要。
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>test</title>
<script src="https://code.jquery.com/jquery-3.5.0.js"></script>
</head>
<body>
<div id="id1"></div>
</body>
</html>
const element = document.getElementById('id1');
if (element == null) {
console.error('Element doesn\'t exist.');
} else {
console.log('It\'s present');
}
输出:
每当我们添加 id=id1
时,element
变量会找到其验证并从 console.log()
以中性颜色返回消息。
我们使用 JSbin 作为编辑器。这就是为什么它显示绿色。在浏览器控制台的其他地方,它将是中性色调。
相关文章
Do you understand JavaScript closures?
发布时间:2025/02/21 浏览次数:108 分类:JavaScript
-
The function of a closure can be inferred from its name, suggesting that it is related to the concept of scope. A closure itself is a core concept in JavaScript, and being a core concept, it is naturally also a difficult one.
Do you know about the hidden traps in variables in JavaScript?
发布时间:2025/02/21 浏览次数:178 分类:JavaScript
-
Whether you're just starting to learn JavaScript or have been using it for a long time, I believe you'll encounter some traps related to JavaScript variable scope. The goal is to identify these traps before you fall into them, in order to av
How much do you know about the Prototype Chain?
发布时间:2025/02/21 浏览次数:150 分类:JavaScript
-
The prototype chain can be considered one of the core features of JavaScript, and certainly one of its more challenging aspects. If you've learned other object-oriented programming languages, you may find it somewhat confusing when you start
用 jQuery 检查复选框是否被选中
发布时间:2024/03/24 浏览次数:102 分类:JavaScript
-
在本教程中学习 jQuery 检查复选框是否被选中的所有很酷的方法。我们展示了使用直接 DOM 操作、提取 JavaScript 属性的 jQuery 方法以及使用 jQuery 选择器的不同方法。你还将找到许多有用的
jQuery 中的 Window.onload 与 $(document).ready
发布时间:2024/03/24 浏览次数:180 分类:JavaScript
-
本教程演示了如何在 jQuery 中使用 Window.onload 和 $(document).ready 事件。