作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在开发一个网络应用程序,但在运行时,我的代码甚至无法工作。但如果这样做
$("input[name^='show-points-']").attr("checked", false);
在控制台上,复选框已取消选中。
奇怪,因为总是在控制台中:
$("input[name^='show-points-']").attr("checked", "checked");
不起作用。
在此Jsfiddle ,该代码适用于“取消选中”功能,但不适用于“全部选中”功能。
最佳答案
使用prop()
$("#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/
我是一名优秀的程序员,十分优秀!