卡希 2006-4-10 14:49
请大家多多帮忙
怎么禁止checkbox选项框为只读,类似<input type="text" readonly>的效果。readonly对checkbox不起作用。使用disabled会使该选项值也无效。谢谢!
feitianmao 2006-4-10 14:50
<input type=checkbox onclick="this.checked=!this.checked">
wozuida2005 2006-4-10 14:51
<input type=checkbox onclick="if(this.checked)this.checked=false">
狼骑士 2006-4-10 14:51
<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>