jQuery prevent other events after a click

后端 未结 6 1022
谎友^
谎友^ 2020-12-14 07:15

I am trying to prevent multiple clicks on links and items, which is causing problems.

I am using jQuery to bind click events to buttons (jQuery UI) and image links (

6条回答
  •  不知归路
    2020-12-14 07:30

    Return false from your event handlers, or call ev.stopPropagation() in every handler.

提交回复
热议问题