Missing click event for inside <button> element on firefox

后端 未结 4 1716
日久生厌
日久生厌 2020-11-28 15:41

I am experiencing problem with Firefox 32 when I bind action on click event of span element inside a button element. Other browsers seems to works well.

Here the cod

4条回答
  •  無奈伤痛
    2020-11-28 16:21

    Add a pointer-event to your button in css like:

    button span {
        pointer-events: none;
    }

    Clicks on the button element will be ignored

提交回复
热议问题