How to bind events to HTML injected from AJAX requests

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

So I am injecting html via an AJAX request:

Ajax Response

  
HTML from AJAX request
4条回答
  •  执念已碎
    2021-01-14 21:16

    Use the on method to make it live.

    $(function(){
        $("#my-element").on("click",function() {
            alert("hit");
        });
    });
    

提交回复
热议问题