Appending HTML w/click event using jQuery

前端 未结 4 2182
小蘑菇
小蘑菇 2021-02-20 15:59

I want to append some HTML inside this div, and the HTML has to have a click event on it also.

    

hello, world!

相关标签:
4条回答
  • 2021-02-20 16:10

    What about :

    $("#myID").click(
      function () {
         var someText = "my dynamic text";
         var newDiv = $("<div>").append(someText).click(function () { alert("click!"); });
         $(this).append(newDiv);
      }
    )
    
    0 讨论(0)
  • 2021-02-20 16:32

    IMPORTANT:

    Take into account that the performance should be better if you use the most specific selector. For this case, if you want only affect the divs inside the "MyId" div, you should use:

    $("#MyId").on("click", "div", function(e) {
        // Whatever you want to do when the divs inside #MyId div are clicked
    });
    

    VERY IMPORTANT:

    Take into account that the second parameter for the on method, in this case "div", is optional, but you NEED to provide it if you want the event to be automatically attached to the dinamically created items. This is called deferred in the jquery documentation for "on" method. I hope this info saves time for someone reading this in the future :)

    0 讨论(0)
  • 2021-02-20 16:32

    Andrew solve this problem to me! But .live is deprecated in the recent versions of jquery (as of 1.7). Use .on or .delegate on top.document to bind these events types. See:

    $(document).on(".myClass", "click", function(){
        $(this).after("<div class='myClass'>Another paragraph!</div>");
    });
    

    Congrats my friend!

    0 讨论(0)
  • 2021-02-20 16:34

    As of jQuery 1.3, this will work:

    <div class="myClass">
    <p>hello, world!</p>
    </div>
    
    
    $(".myClass").live("click", function(){
        $(this).after("<div class='myClass'><p>Another paragraph!</p></div>");
    });
    

    See more about live events on this page:

    http://docs.jquery.com/Events

    0 讨论(0)
提交回复
热议问题