checkbox event:
<input type="checkbox" name="contents" value="1" {{action 'enable_submit'}} />
submit button
<button id='submit_btn' class='btn' disabled="disabled">Submit</button>
when user click checkbox, remove disabled of submit button
$("#submit_btn").removeAttr('disabled')
The result is:
1, disable status of submit button can be removed normally.
2, the checkbox can't be checked again, it is the same problem on radiobutton