作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我选中“星期一”的复选框时,“星期二”的选中状态会更新。它同时运行良好。
但是,一旦我点击选中或取消选中“星期二”,然后如果我选中“星期一”,“星期二”的状态就不会再更改为与“星期一”相同。选中/取消选中“星期二”后,它不会与“星期一”复选框同步。
$(function() {
// main product upload
$("#monday").change(function(e) {
$("#tuesday").attr("checked", this.checked);
});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<input type="checkbox" id="monday" name="monday">
<input type="checkbox" id="tuesday" name="tuesday">
最佳答案
使用 prop
而不是 attr
。
$(function () {
// main product upload
$( "#monday" ).change(function(e) {
$( "#tuesday" ).prop("checked", this.checked);
});
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
Monday: <input type="checkbox" id="monday" name="monday" > <br/>
Tues: <input type="checkbox" id="tuesday" name="tuesday" >
关于javascript - 无法同时更改复选框选中状态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66415398/
我是一名优秀的程序员,十分优秀!