我无法在第二次尝试时选中复选框(我可以选中然后取消选中,但在此之后没有效果)
属性设置为checked="checked" 但没有视觉效果。我正在使用 MacOS 并在 Chrome 和 Firefox 中进行了测试
HTML
<input type="checkbox" />
<input type="checkbox" />
<input type="checkbox" />
<input type="checkbox" />
<input type="checkbox" />
<button id="check">Check</button>
<button id="uncheck">Uncheck</button>
JS
$('#check').click(function() {
$(':checkbox').attr('checked', true)
})
$('#uncheck').click(function() {
$(':checkbox').attr('checked', false)
})