Prevent checkbox from ticking/checking COMPLETELY

前端 未结 13 595
醉梦人生
醉梦人生 2020-12-09 07:48

I have been asked to disable the \"ticking\" of a checkbox. I am not being asked to disable the checkbox, but to simply disable the \"ticking\".

In other w

13条回答
  •  爱一瞬间的悲伤
    2020-12-09 08:06

    It is very important to use return false at the end.

    Something like this:

    $("#checkbox").click((e) => {
      e.stopPropagation();
      return false;
    });
    

提交回复
热议问题