发新话题
打印

请大家多多帮忙

请大家多多帮忙

怎么禁止checkbox选项框为只读,类似<input  type="text"  readonly>的效果。readonly对checkbox不起作用。使用disabled会使该选项值也无效。谢谢!

TOP

<input  type=checkbox  onclick="this.checked=!this.checked">

TOP

<input  type=checkbox  onclick="if(this.checked)this.checked=false">

TOP

<input  type=checkbox  checked  onclick="this.checked=!this.checked">  
<input  type=checkbox  checked  onclick="return  false">  
<span  onmouseover="firstChild.disabled=true"  onmouseout="firstChild.disabled=false"><input  type=checkbox  checked></span>

TOP

发新话题