gpt4 book ai didi

javascript - 使用javascript取消选中页面加载时的所有复选框

转载 作者:搜寻专家 更新时间:2023-11-01 04:44:35 26 4
gpt4 key购买 nike

我正在使用以下代码,但它不起作用。告诉我是否有任何建议。我希望在加载页面时取消选中所有复选框。我有以下代码,但它不起作用:

 window.onload = function abc() {
document.getElementsByTagName('input')[0].focus();
}
<tr>
<td>
<input type="checkbox" ID="cb1" value="29500" onclick="if(this.checked){ cbcheck(this) } else { cbuncheck(this)}" /> Laptop
</td>
<td>
<a href="#" id="a1" onmouseover="showimage('a1','laptop1');" >Show Image</a>
<img src="Images/laptop.jpg" id="laptop1" alt="" style="display:none; width:150px; height:150px;" onmouseout="hideimage('a1','laptop1');" class="right"/>
</td>
</tr>
<tr>
<td>
<input type="checkbox" ID="cb2" value="10500" onclick="if(this.checked){ cbcheck(this) } else { cbuncheck(this)}" /> Mobile
</td>
<td>
<a href="#" id="a2" onmouseover="showimage('a2','mobile1');" >Show Image</a>
<img src="Images/mobile.jpg" id="mobile1" alt="" style="display:none; width:150px; height:150px;" onmouseout="hideimage('a2','mobile1');" />
</td>
</tr>

最佳答案

在您的页面加载事件中调用此函数

function UncheckAll(){ 
var w = document.getElementsByTagName('input');
for(var i = 0; i < w.length; i++){
if(w[i].type=='checkbox'){
w[i].checked = false;
}
}
}

关于javascript - 使用javascript取消选中页面加载时的所有复选框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12364007/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com