jQuery如何绑定onclick事件以动态添加HTML元素

时间:2009-10-06 13:40:36

标签: javascript jquery bind

我想将onclick事件绑定到我使用jQuery动态插入的元素

但它永远不会运行绑定功能。如果你能指出为什么这个例子不起作用以及如何让它正常运行,我会很高兴:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"        
            "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
        <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="da" lang="da">
        <head>
          <title>test of click binding</title>

<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
          <script type="text/javascript">


        jQuery(function(){
          close_link = $('<a class="" href="#">Click here to see an alert</a>');
          close_link.bind("click", function(){
            alert('hello from binded function call');
            //do stuff here...
          });
  
          $('.add_to_this').append(close_link);
        });
          </script>
        </head>
        <body>
          <h1 >Test of click binding</h1>
          <p>problem: to bind a click event to an element I append via JQuery.</p>

          <div class="add_to_this">
            <p>The link is created, then added here below:</p>
          </div>

          <div class="add_to_this">
            <p>Another is added here below:</p>
          </div>


        </body>
        </html>

编辑:我编辑了示例以包含插入方法的两个元素。在这种情况下,永远不会执行alert()调用。 (感谢@Daff在评论中指出这一点)

9 个答案:

答案 0 :(得分:276)

不推荐使用所有这些方法。您应该使用on方法来解决问题。

如果您想要定位动态添加的元素,则必须使用

$(document).on('click', selector-to-your-element , function() {
     //code here ....
});

这会替换已弃用的.live()方法。

答案 1 :(得分:59)

第一个问题是当你在一个带有多个元素的jQuery集上调用append时,会为每个元素创建一个要追加的元素的克隆,因此附加的事件观察者会丢失。

另一种方法是为每个元素创建链接:

function handler() { alert('hello'); }
$('.add_to_this').append(function() {
  return $('<a>Click here</a>').click(handler);
})

另一个潜在的问题可能是在将元素添加到DOM之前附加了事件观察者。我不确定这是否有什么要说的,但我认为这种行为可能被认为是不确定的。 一个更可靠的方法可能是:

function handler() { alert('hello'); }
$('.add_to_this').each(function() {
  var link = $('<a>Click here</a>');
  $(this).append(link);
  link.click(handler);
});

答案 2 :(得分:51)

Live方法怎么样?

$('.add_to_this a').live('click', function() {
    alert('hello from binded function call');
});

但是,你所做的事情看起来应该有效。 another post看起来非常相似。

答案 3 :(得分:18)

派对有点晚了,但我想我会尝试清除jQuery事件处理程序中的一些常见误解。从jQuery 1.7开始,应使用.on()代替不推荐使用的.live(),将事件处理程序委托给在分配事件处理程序后的任何时刻动态创建的元素。

也就是说,为live切换on并不简单,因为语法略有不同:

新方法(例1):

$(document).on('click', '#someting', function(){

});

不推荐使用的方法(示例2):

$('#something').live(function(){

});

如上所示,存在差异。通过将选择器传递给jQuery函数本身,实际上可以将.on()调用类似于.live()

示例3:

$('#something').on('click', function(){

});

但是,如果不使用示例1中的$(document),示例3将不适用于动态创建的元素。如果您不需要动态委派,示例3绝对没问题。

  

$(文件).on()是否应该用于所有事情?

它可以工作,但是如果你不需要动态委托,那么使用示例3会更合适,因为示例1需要浏览器稍微多做一些工作。对性能没有任何实际影响,但使用最合适的方法是有意义的。

  

如果不需要动态委派,是否应该使用.on()而不是.click()?

不一定。以下只是示例3的快捷方式:

$('#something').click(function(){

});

以上内容完全有效,因此在不需要动态委派时使用哪种方法实际上是个人偏好的问题。

参考文献:

答案 4 :(得分:1)

考虑一下:

jQuery(function(){
  var close_link = $('<a class="" href="#">Click here to see an alert</a>');
      $('.add_to_this').append(close_link);
      $('.add_to_this').children().each(function()
      {
        $(this).click(function() {
            alert('hello from binded function call');
            //do stuff here...
        });
      });
});

它会起作用,因为您将它附加到每个特定元素。这就是为什么你需要 - 在添加到DOM的链接之后 - 找到一种方法来显式选择你添加的元素作为DOM中的JQuery元素并将click事件绑定到它。

最好的方法可能是 - 如建议的那样 - 通过live方法将其绑定到特定的类。

答案 5 :(得分:0)

我相信它的好方法:

$('#id').append('<a id="#subid" href="#">...</a>');
$('#subid').click( close_link );

答案 6 :(得分:0)

有可能并且有时需要与元素一起创建click事件。例如,当基于选择器的绑定不是一个选项时。关键部分是通过在单个元素上使用.replaceWith()来避免Tobias所讨论的问题。请注意,这只是一个概念证明。

<script>
    // This simulates the object to handle
    var staticObj = [
        { ID: '1', Name: 'Foo' },
        { ID: '2', Name: 'Foo' },
        { ID: '3', Name: 'Foo' }
    ];
    staticObj[1].children = [
        { ID: 'a', Name: 'Bar' },
        { ID: 'b', Name: 'Bar' },
        { ID: 'c', Name: 'Bar' }
    ];
    staticObj[1].children[1].children = [
        { ID: 'x', Name: 'Baz' },
        { ID: 'y', Name: 'Baz' }
    ];

    // This is the object-to-html-element function handler with recursion
    var handleItem = function( item ) {
        var ul, li = $("<li>" + item.ID + " " + item.Name + "</li>");

        if(typeof item.children !== 'undefined') {
            ul = $("<ul />");
            for (var i = 0; i < item.children.length; i++) {
                ul.append(handleItem(item.children[i]));
            }
            li.append(ul);
        }

        // This click handler actually does work
        li.click(function(e) {
            alert(item.Name);
            e.stopPropagation();
        });
        return li;
    };

    // Wait for the dom instead of an ajax call or whatever
    $(function() {
        var ul = $("<ul />");

        for (var i = 0; i < staticObj.length; i++) {
            ul.append(handleItem(staticObj[i]));
        }

        // Here; this works.
        $('#something').replaceWith(ul);
    });
</script>
<div id="something">Magical ponies ♥</div>

答案 7 :(得分:0)

    function load_tpl(selected=""){
        $("#load_tpl").empty();
        for(x in ds_tpl){
            $("#load_tpl").append('<li><a id="'+ds_tpl[x]+'" href="#" >'+ds_tpl[x]+'</a></li>');
        }
        $.each($("#load_tpl a"),function(){
            $(this).on("click",function(e){
                alert(e.target.id);
            });
        });
    }

答案 8 :(得分:-2)

<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>    
<script>
    $(document).ready(function(){
        $(document).on('click', '.close', function(){
            var rowid='row'+this.id;
            var sl = '#tblData tr[id='+rowid+']';
            console.log(sl);
            $(sl).remove();
        });
        $("#addrow").click(function(){
            var row='';
            for(var i=0;i<10;i++){
                row=i;
                row='<tr id=row'+i+'>'
                    +   '<td>'+i+'</td>'
                    +   '<td>ID'+i+'</td>'
                    +   '<td>NAME'+i+'</td>'
                    +   '<td><input class=close type=button id='+i+' value=X></td>'
                    +'</tr>';
                console.log(row);
                $('#tblData tr:last').after(row);
            }
        });
    });

</script>
</head>
  <body>
    <br/><input type="button" id="addrow" value="Create Table"/>
    <table id="tblData" border="1" width="40%">
        <thead>
        <tr>
            <th>Sr</th>
            <th>ID</th>
            <th>Name</th>
            <th>Delete</th>
        </tr>
        </thead>
    </table>
    </body>
 </html>