无法通过 jQuery 选择添加的 tr

发布于 2024-12-08 05:17:28 字数 1175 浏览 0 评论 0原文

当在数据库中找到结果时,我添加表,它是由 jQuery 生成的,当没有找到任何内容时删除表。它工作正常。

$("#AdminSearch").bind("change keyup", function() { 
       var url = "http://localhost/PmMusic/index.php/admin/ajax/admin_search/"+$("#AdminSearch").val();
        $.getJSON(url,function(data){
            if (data.length == 0)
            {
                $("#AutoSearch").hide(1000);
                $("#AutoSearchTable").remove();
            }
            else
            {
                $("#AutoSearchTable").remove();
                $("#AutoSearch").append('<table id="AutoSearchTable">');
                for(var i = 0;i < data.length && i < 5;i++)
                    {
                     $("#AutoSearchTable").append('<tr><td id="TableSearchTR'+i+'" value="'+data[i]+'">'+data[i]+'</td></tr>');
                    }
                $("#AutoSearch").append('</table>');
                $("#AutoSearch").show(1000);    
            }
        });

    });

但是当我想通过以下代码选择 tr

    $('tr').click(function(){
        alert("Hi");
    });

当我单击页面中的其他表 tr 时它可以工作,但它无法选择由上面代码添加的 tr )。 问题出在哪里?

I add table and it's raws by jQuery when find result in database,and remove table when don't find anything.It works correctly.

$("#AdminSearch").bind("change keyup", function() { 
       var url = "http://localhost/PmMusic/index.php/admin/ajax/admin_search/"+$("#AdminSearch").val();
        $.getJSON(url,function(data){
            if (data.length == 0)
            {
                $("#AutoSearch").hide(1000);
                $("#AutoSearchTable").remove();
            }
            else
            {
                $("#AutoSearchTable").remove();
                $("#AutoSearch").append('<table id="AutoSearchTable">');
                for(var i = 0;i < data.length && i < 5;i++)
                    {
                     $("#AutoSearchTable").append('<tr><td id="TableSearchTR'+i+'" value="'+data[i]+'">'+data[i]+'</td></tr>');
                    }
                $("#AutoSearch").append('</table>');
                $("#AutoSearch").show(1000);    
            }
        });

    });

but when I wanna select tr by following code

    $('tr').click(function(){
        alert("Hi");
    });

When I click on other table tr in page it works,but it can't select tr which added by upper code).
where is the problem?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

凹づ凸ル 2024-12-15 05:17:28

您需要使用 .live().delegate() 将点击事件附加到动态创建的元素。

$("#AdminSearch").delegate("tr","click",function() {
    alert("Hi");
});

You need to use .live() or .delegate() to attach click events to dynamically-created elements.

$("#AdminSearch").delegate("tr","click",function() {
    alert("Hi");
});
你的心境我的脸 2024-12-15 05:17:28

这是因为您使用 .click 进行绑定,它仅适用于页面中已有的元素。

将您的代码更改为

$('tr').live('click', function(){
    alert("Hi");
});

That's because you're binding with .click, which only applies to elements already in the page.

Change your code to

$('tr').live('click', function(){
    alert("Hi");
});
烟─花易冷 2024-12-15 05:17:28

如果添加 .click() 函数时 TR 不存在,则它将不会附加单击事件。您应该考虑使用 .delegate() 函数。

If the TR is not there when your .click() function is added, then it won't have a click event attached. You should look at using the .delegate() function instead.

浅暮の光 2024-12-15 05:17:28

click() 仅适用于 DOM 中已有的元素。如果您使用ajax加载某些内容,那么我建议使用live()

$('tr').live('click', function() {
  alert("Hi");
});

click() will only work for elements already in the DOM. If you're loading in some content w/ ajax then I would suggest live().

$('tr').live('click', function() {
  alert("Hi");
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文