无法选择由ajax注入的元素

时间:2012-05-18 05:43:10

标签: javascript jquery ajax

我编写了代码来使用ajax更新帖子:

 $(function(){
   $('#loadFeed').bind('click',function(){ 
        $.getJSON('getData.php', function(json) {
            var output="<ul id='feedsList'>";

            for(var i=json.posts.length-1;i>=json.posts.length-31;i--){
                output+="<li class='post'>";
                output+="<div class='text'>"+json.posts[i].shortmsg+"</div>";         
                output+="</li>";
            }
            output+="</ul>"
            $(output).appendTo('.posts');
    });
  });
});

我的HTML代码:

<div data-role="content" class="ui-content" role="main">
        <div class="posts"></div>
 </div>

然后我想点击每个帖子,帖子将展开以显示更详细的内容。我该怎么做?我写的代码是:

$(function(){
     $('.text').bind('click',function(){
         $.getJSON('getData.php', function(json){   
         var thisID = this.id;      
         $(this).replaceWith("<div class='long_text'>"+json.posts[thisID].msg+"<div>"); 
         });
     });
});

但它没有做任何事情。我不确定是否

var thisID = this.id;

是否有效。我改变了我的代码: $(function(){ $('.text').bind('click',function(){ alert("Hello!") }); });

仍然没有发生!!我怀疑是否在函数中选择了.text。任何人都可以帮忙吗?谢谢!

2 个答案:

答案 0 :(得分:2)

你应该阅读jQuery的.on()

假设您有一个在动态内容之前存在的容器

<div class="posts">
    <!--dynamic content here-->
</div>

然后您将处理程序一次附加到现有容器,它将侦听动态内容的事件

//"add listener for .text, attached on .post"
$('.posts').on('click','.text', function(){
    //do stuff when text is clicked    
});

答案 1 :(得分:0)

使用.live()代替.bind()。然后它会对页面上出现的新元素保持警惕。

实际上doc说:

  

从jQuery 1.7开始,不推荐使用.live()方法。使用.on()来   附加事件处理程序。旧版jQuery的用户应该使用   .delegate()优先于.live()。