js取消单选按钮选中并判断对象是否为空
作者:
取消单选按钮选中并判断对象是否为空,在项目中也是比较常见的,下面有个不错的示例,感兴趣的朋友可以参考下
一组单选按钮name都为country
var country = document.getElementsByName('country');
for(var i=0;i<country.length;i++){
if(country[i].checked)
{
country[i].checked=false; //不选中
}
}
<c:if test="${shippingAddressList != null && not empty shippingAddressList}"> //判断集合shippingAddressList 是否为空
复制代码 代码如下:
var country = document.getElementsByName('country');
for(var i=0;i<country.length;i++){
if(country[i].checked)
{
country[i].checked=false; //不选中
}
}
<c:if test="${shippingAddressList != null && not empty shippingAddressList}"> //判断集合shippingAddressList 是否为空