两个互斥的用JS控制:
<script>
var oCheck = null;function onCheckClick(obj){
  if (oCheck != null)
      if (oCheck.checked)       
          oCheck.checked = false;
  
  oCheck = obj;
}
</script><input type="checkbox" name="ch1" onClick="onCheckClick(this)">
<input type="checkbox" name="ch2" onClick="onCheckClick(this)">
<input type="checkbox" name="ch3">

解决方案 »

  1.   

    多个复选框也一样,为要互斥的加上onClick事件就可以了
      

  2.   

    <input type="checkbox" name="ch1" onClick="ch2.checked=!this.checked">
    <input type="checkbox" name="ch2" onClick="ch1.checked=!this.checked">
    <input type="checkbox" name="ch3">
      

  3.   

    <input type=checkbox name=c1 checked onclick="c2.checked = this.checked == true?false:true;">
    <input type=checkbox name=c2 onclick="c1.checked = this.checked == true?false:true;">
    <input type=checkbox name=c3>