How to bind events to HTML injected from AJAX requests

前端 未结 4 879
逝去的感伤
逝去的感伤 2021-01-14 20:48

So I am injecting html via an AJAX request:

Ajax Response

  
HTML from AJAX request
4条回答
  •  [愿得一人]
    2021-01-14 20:55

    Try to use jQuery.on function: http://api.jquery.com/on/

    $(document).on('click', '#my-element', function () { ... });
    

    Then it will work even with dinamically added elements.

提交回复
热议问题