作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我这样做:
console.log(document.getElementsByName('chkDetail')[0].checked)
在 javascript 中我得到:
true
然后我完成了所有这些(以及更多):
document.getElementsByName('chkDetail')[0].setAttribute('checked', false);
或
document.getElementById('cd').setAttribute('checked', false);
或
document.getElementsByName('chkDetail')[0].removeAttribute('checked');
或
document.getElementById('cd').removeAttribute('checked');
然后当我再次这样做时:
console.log(document.getElementsByName('chkDetail')[0].checked)
我仍然得到:
true
似乎没有什么可以取消选中此复选框!
PS 我尝试过使用“false”和“false”,我知道将 bool 值强制转换为字符串只是评估为 true,所以我也尝试了“”和“”。
我去过的很多网站都说这些组合和其他组合都应该有效。我可能会忽略什么?
最佳答案
你尝试过吗:
document.getElementsByName('chkDetail')[0].checked = false;
查看this reference on the checked
property的元素。该属性可以直接读取或写入。
我注意到您有一个getElementById('cd')
。如果您想要的元素具有 ID 值,我建议您使用该值而不是 getElementsByName()
。所以调用将变为:
document.getElementById('cd').checked = false;
关于javascript - 如何将 checkbox.checked 设置为 false/未选中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37770110/
我是一名优秀的程序员,十分优秀!