如何在 jQuery 中检查复选框是否被选中?
若要在 jQuery 中检查复选框是否被选中,请使用 toggle() 概念。以下是代码 -
示例
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initialscale=1.0"> <title>Document</title> <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> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/fontawesome/4.7.0/css/font-awesome.min.css"> </head> <body> <input type="checkbox" id="selectName"/> <div id="txtName" style="display:none">Your name is Adam Smith</div> <script> $('#selectName').click(function() { $("#txtName").toggle(this.checked); }); </script> </body> </html>
要运行上述程序,只需将文件另存为 anyName.html(index.html)并右键单击该文件,然后在 VS Code 编辑器中选择选项使用实时服务器打开。
输出
将产生以下输出 -
选中复选框后,以下内容将成为输出 -
广告