checkbox没有readonly
如果在checkbox加上disable属性的话就不能用代码触发click事件或者手动点击
如果需要用代码触发click事件,则在js代码里面添加一条语句:
$("#id").click(function(){
return false;
});