盛夏的果实 发表于 2021-7-30 18:56:09

jQuery取消checkbox选中状态

<!DOCTYPE html>
<html>

<head>
<meta charset="UTF-8">
<title>jQuery取消checkbox选中状态</title>
</head>

<body>
<input type="button" value="取消"/>

<input type="checkbox" checked="checked" id="box" />
</body>
<script src="https://cdn.staticfile.org/jquery/2.1.1/jquery.min.js"></script>
<script>
function box() {
$("#box").attr("checked", false);
}
</script>

</html>




文档来源:51CTO技术博客https://blog.51cto.com/u_15315508/3208210
页: [1]
查看完整版本: jQuery取消checkbox选中状态