js取消单选按钮选中示例代码


  本文标签:js,单选按钮选中

一组单选按钮name都为country
复制代码 代码如下:

var country = document.getElementsByName(country);
for(var i=0;i<country.length;i++){
if(country[i].checked)
{
country[i].checked=false; //不选中
}
}