在 JavaScript 中验证复选框
在本文中,我们将使用输入元素的 checked
属性介绍 JavaScript 中的复选框验证。
使用 checked
属性验证 JavaScript 中的复选框
JavaScript 中的 input 元素用于接收用户的输入。这也可以在表单中使用。
它为我们提供了一个 checked
属性来验证 JavaScript 中的复选框。如果用户选中复选框,则 checked
属性将返回 true
;否则,它将返回 false
。
下面我们有一个 HTML 文档。我们在 body 元素中有一个标签和一个按钮。
使用 label
元素,我们可以为复选框提供标签。input
元素包裹在 label
元素周围。
为了使这个输入成为一个复选框,我们必须将它的类型设置为 checkbox
,并且我们还必须为输入提供一个 ID 为 checkbox
的输入,以便在 JavaScript 中访问这个元素。
<!DOCTYPE html>
<html>
<head>
<body>
<label for="Select Checkbox">
<input type="checkbox" id="checkbox"> Accept
</label>
<button id="submit">Submit</button>
<script>
const checkbox = document.getElementById('checkbox');
const btn = document.getElementById('submit');
btn.onclick = () => {
if(!checkbox.checked)
console.log("Checkbox selected: ", checkbox.checked);
else
console.log("Checkbox selected: ", checkbox.checked);
};
</script>
</body>
</html>
输出:
在这里,我们首先存储了 checkbox
元素的引用,我们使用 DOM API 的 getElementById()
方法在 HTML 中定义了该元素。同样,我们也为提交按钮执行此操作。
现在我们已经将复选框和提交按钮存储在 checkbox
和 btn
变量中,我们使用它们来执行验证。在这里,我们在 btn
上设置了一个 onclick()
元素,一经按下,它将执行一个函数。
在这个函数中,我们使用了一个条件语句并检查 checkbox.checked
是否为真。
请注意,我们使用了感叹号!
在 if
块内。这意味着如果用户不选中复选框,checkbox.checked
将返回 false,而 !false
将变为 true
。
由于用户没有选中复选框,我们在 if
块内输入,然后打印 Checkbox selected: false
。
否则,如果用户单击复选框,我们将进入 else
块,并且打印在控制台上的消息将是 Checkbox selected: true
。
相关文章
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 事件。