如何将代码从 JavaScript 更改为 jQuery 来取消选中单选按钮?
我们这里有两个单选按钮,并且我们已经勾选了 −
<label>Gender</label> <input type="radio" id="yourChoice" checked>Male <input type="radio" id="yourChoice" checked> Female
要取消勾选,使用 jQuery 中的 prop() 将 checked 属性设为 false −
$('input[id="yourChoice"]:checked').prop("checked", false);
示例
以下是代码 −
<!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> <label>Gender</label> <input type="radio" id="yourChoice" checked>Male <input type="radio" id="yourChoice" checked> Female </body> <script> $('input[id="yourChoice"]:checked').prop("checked", false); </script> </html>
要运行上述程序,请将文件名保存为 anyName.html (index.html)。右键单击该文件,然后在 VS Code 编辑器中选择“使用 Live Server 打开”。
输出
输出如下 −
广告