52,793
社区成员




<input type="checkbox" onclick="hehe(this)" id="chk1"/><label for="chk1">哎 </label>
<input type="checkbox" onclick="hehe(this)" id="chk2"/><label for="chk2">哎 </label>
<input type="checkbox" onclick="hehe(this)" id="chk3"/><label for="chk3">哎 </label>
<input type="checkbox" onclick="hehe(this)" id="chk4"/><label for="chk4">哎 </label>
<input type="checkbox" onclick="hehe(this)" id="chk5"/><label for="chk5">哎 </label>
<script language="JavaScript">
var id="";
function hehe(obj) {
if(id!="" && id!=obj.id) {
document.getElementById(id).checked=false;
}
id=obj.id;
}
var tmp = null;
$(function(){
$("input[name='xg']").bind("click",function(){
if(tmp!=null){
tmp.removeAttr("checked");
}
tmp = $(this);
});
}) ;
<input type="checkbox" name="xg">1 <br />
<input type="checkbox" name="xg">2 <br />
<input type="checkbox" name="xg">3 <br />
<input type="checkbox" name="xg">4 <br />
<input type="checkbox" name="xg">5 <br />