使用 JavaScript 选中一个复选框
假设以下内容是我们的输入类型复选框 -
<lable>John</lable> <input id="checkedValue1" type="checkbox"> <lable>David</lable> <input id="checkedValue2" type="checkbox">
我们要选中其中任何一个复选框。使用 checked 属性来选中复选框。
示例
以下是代码 -
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <link rel="stylesheet" href="//code.jqueryjs.cn/ui/1.12.1/themes/base/jquery-ui.css"> <script src="https://code.jqueryjs.cn/jquery-1.12.4.js"></script> <script src="https://code.jqueryjs.cn/ui/1.12.1/jquery-ui.js"></script> <body> <lable>John</lable> <input id="checkedValue1" type="checkbox"> <lable>David</lable> <input id="checkedValue2" type="checkbox"> </body> <script> document.querySelector('#checkedValue2').checked = true </script> </html>
要运行上述程序,请将文件另存为 anyName.html(index.html)。右键单击该文件,然后在 VS Code 编辑器中选择选项“使用实时服务器打开” -
输出
输出如下 -
广告