在页面上单选按钮的代码:
<s:iterator value="@com.hljw.cmeav.util.CmeavGlobal@isComMap"> <input type="radio" <s:if test="key eq record.is_com">checked</s:if> value="${key}" name="record.is_com"/>${value} </s:iterator>
if($('input[name="record.is_com"]:checked').val() == 0){ $("input[name=record.is_com][value=1]").attr("checked",true); }以上的功能就是判断:如果当前选中的单选按钮的值为0,就将单选按钮的值为1的按钮选中。
jquery获取单选按钮选中的值,布布扣,bubuko.com
原文地址:http://blog.csdn.net/zl544434558/article/details/35568457