我正在尝试使用一个称为“全部”的复选框,该复选框还会在我的表单中检查其余的复选框。我基本上没有 javascript 经验,如果这真的很基本,我很抱歉。我通过查看类似this和this的帖子将其拼凑在一起。
<script type="text/javascript">
function checkIt(checkbox)
{
document.GetElementById("1").checked = true;
document.GetElementById("2").click();
}
</script>
我的 HTML 如下所示:
<form>
<input type="checkbox" id="A" onclick="checkIt(this)">All<br></input>
<input type="checkbox" id="1">One<br></input>
<input type="checkbox" id="2">Two<br></input>
</form>
当我选择所有复选框时,如何更改复选框 1 和 2?谢谢。