如何使用 jQuery 动态选中或取消选中单选按钮
答案:使用jQuery prop()
方法
您可以使用 jQuery prop()
方法动态检查或取消选中单选按钮,例如单击按钮或超链接等。 prop()
方法需要 jQuery 1.6 和 以上。
让我们看看下面的例子来了解它的基本工作原理:
示例
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery 选中/取消选中单选按钮</title>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script>
$(document).ready(function(){
$(".check-male").click(function(){
$("#male").prop("checked", true);
});
$(".check-female").click(function(){
$("#female").prop("checked", true);
});
});
</script>
</head>
<body>
<label><input type="radio" name="gender" id="male"> Male</label>
<label><input type="radio" name="gender" id="female"> Female</label>
<button type="button" class="check-male">I'm Male</button>
<button type="button" class="check-female">I'm Female</button>
</body>
</html>
FAQ 相关问题解答
以下是与此主题相关的更多常见问题解答: