一组单选按钮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 是否为空

点赞(81)

评论列表共有 0 条评论

立即
投稿
返回
顶部