在页面上单选按钮的代码:
<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的按钮选中。