网上搜索到的,项目中正好用到,先记下来,以后直接从自己的博客上复制粘贴!!!
//取单选框选择中的值,传入单选框的name
function getRadioBoxValue(radioName)
{
var obj = document.getElementsByName(radioName); //这个是以标签的name来取控件
for (i = 0; i < obj.length; i++) {
if (obj[i].checked) {
return obj[i].value;
}
}
return "undefined";
}
原文地址:https://www.cnblogs.com/niunan/p/9072609.html
时间: 2024-11-02 18:11:46