js怎样判断单选框是否被选中?
id="listTable" uid="listTable" partialList="true" size="resultSize" class="its" >
<display:column property="soperator" title="登录号"
sortable="true"></display:column>
<display:column property="smodifyopt" title="修改者"></display:column>
<display:column title="查看 " href="" paramId="soperator" paramProperty="soperator">
<input type="radio" name="choseRows" id="choseRows"
value="${listTable.iopttype},${listTable.soperator}"
onclick="updateTotal(this.value);" />
</display:column>
<display:column value="删除" title="操作"
href="/depart/deleoperatorinfo.action" paramId="sid"
paramProperty="sid"></display:column>
</display:table>
大家最好给出代码,这是一个循环标签,里面除了单选框还包括其他内容,现在我想用js判断一下哪个单选框被选中了,大家帮忙啊。。。 展开
这样:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>JQuery radio</title>
<script type="text/javascript" language="javascript" src="JavaScript/jquery-1.6.1.min.js" ></script>
<script type="text/javascript">
$(function () {
$("input").click(function () {
if ($(this).attr("checked")) {
alert("选中了");
}
});
});
</script>
</head>
<body>
<input type="radio"/>
</body>
</html>
扩展资料:
注意事项
<form>
<input type="radio" id="radio1" />
<input type="button" οnclick="check()" value="选中" />
<input type="button" οnclick="uncheck()" value="取消" />
</form>
function check() {
//被选中
document.getElementById("radio1").checked = true
//被选中时,可以执行的方法
if(document.getElementById("radio1").checked == true){
console.log('==')
}
}
function uncheck() {
//不选中
document.getElementById("radio1").checked = false
//不被选中时,可以执行的方法
if(document.getElementById("radio1").checked == false){
console.log('++')
}
}
function
fn(){//定义一个函数
for(var
i=0;i<document.getElementsByName("choseRows").length;i++){
if(document.getElementsByName[i].checked==true){//得到选中的单选按钮如果要得到值
那么可以:
alert(document.getElementsByName[i].value);//弹出选中单选按钮的值
}
}
}
function fn(){//定义一个函数
for(var i=0;i<document.getElementsByName("choseRows").length;i++){
if(document.getElementsByName[i].checked==true){//得到选中的单选按钮如果要得到值 那么可以:
alert(document.getElementsByName[i].value);//弹出选中单选按钮的值
}
}
}