如何使用 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").click(function(){
$("#myCheck").prop("checked", true);
});
$(".uncheck").click(function(){
$("#myCheck").prop("checked", false);
});
});
</script>
</head>
<body>
<p><input type="checkbox" id="myCheck"> Are you sure?</p>
<button type="button" class="check">Yes</button>
<button type="button" class="uncheck">No</button>
</body>
</html>
FAQ 相关问题解答
以下是与此主题相关的更多常见问题解答: