gpt4 book ai didi

jquery - 无法检查 JavaScript 中的所有复选框

转载 作者:行者123 更新时间:2023-12-01 02:28:12 25 4
gpt4 key购买 nike

我正在开发一个网络应用程序,但在运行时,我的代码甚至无法工作。但如果这样做

$("input[name^='show-points-']").attr("checked", false);

在控制台上,复选框已取消选中。

奇怪,因为总是在控制台中:

$("input[name^='show-points-']").attr("checked", "checked");

不起作用。

在此Jsfiddle ,该代码适用于“取消选中”功能,但不适用于“全部选中”功能。

最佳答案

使用prop()

Updated Fiddle

$("#show-all-points").change(function () {
$("input[name^='show-points-']")
.prop("checked", this.checked);
});

$("#show-all-points").change(function() {
$("input[name^='show-points-']")
.prop("checked", this.checked);
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
<tbody>
<tr>
<td>
<input type="checkbox" checked="checked" name="show-points-pb">
</td>
</tr>
<tr>
<td>
<input type="checkbox" checked="checked" name="show-points-pi1">
</td>
</tr>
<tr>
<td>
<input type="checkbox" checked="checked" name="show-points-pi2">
</td>
</tr>
<tr>
<td>
<input type="checkbox" checked="checked" name="show-points-gp">
</td>
</tr>
<tr>
<td>
<input type="checkbox" checked="checked" name="show-points-ok">
</td>
</tr>
<tr>
<td>
<input type="checkbox" checked="checked" name="show-points-op">
</td>
</tr>
<tr>
<td>
<input type="checkbox" checked="checked" name="show-points-er">
</td>
</tr>
<tr>
<td></td>
<td>Tout sélectionner/désélectionner
<input type="checkbox" checked="checked" id="show-all-points">
</td>
</tr>
</tbody>

关于jquery - 无法检查 JavaScript 中的所有复选框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34062955/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com