日期:2014-05-16 浏览次数:20389 次
var totalnumber = 1
function doclick(el) {
el.checked == true ? totalnumber-- : 1;
if (totalnumber == 0) {
//disabled 你想要的disabled
//el.disabled = true;
}
}
<input type="radio" name="adf" onclick="doclick(this)" />
function vote(obj) {
var count = 0;
var inputs = document.getElementsByTagName("input");
for(var i=0; i<inputs.length; i++) {
if(inputs[i].type == "radio" && inputs[i].value == "1" && inputs[i].checked) count += 1;
}
if(count > 4) {
document.getElementsByName(obj.name)[1].checked = true;
}
}
<input type="radio" name="t1" onclick="vote(this);" value="1" /> 同意
<input type="radio" name="t1" value="2" /> 不同意<br />
<input type="radio" name="t2" onclick="vote(this);" value="1" /> 同意
<input type="radio" name="t2" value="2" /> 不同意<br />
<input type="radio" name="t3" onclick="vote(this);" value="1" /> 同意
<input type="radio" name="t3" value="2" /> 不同意<br />
<input type="radio" name="t4" onclick="vote(this);" value="1" /> 同意
<input type="radio" name="t4" value="2" /> 不同意<br />
<input type="radio" name="t5" onclick="vote(this);" value="1" /> 同意
<input type="radio" name="t5" value="2" /> 不同意<br />
<div id="tt">还可以投4票</div>
<input type="radio" name="t1" value="1" /> 同意
<input type="radio" name="t1" value="2" /> 不同意<br />
<input type="radio" name="t2" value="1" /> 同意