如何在jquery / ajax加载后点击id显示或返回多个按钮

时间:2016-10-10 18:28:36

标签: jquery ajax

的index.php     //脚本

<html>
<body>
<div id='div_com'>
</div>
</body>
</html>

<script>
    $("#div_com").load('showingcomment.php')
        },1000);

 $(".reply_reply231").click(function(){
    alert(this.id);
    $("#txta").val('');
  });

</script>

showingcomment.php

    while($row2 = mysql_fetch_array($result2));

从索引

显示
echo " <div id='divtextarea'><textarea id='txta'></textarea>
<input type='hidden' name='cid' value='".$row2['CommentID']."'>

<button id='reply_reply'name='reply' type='button'>Reply</button></div></br>                                                               
";             
                                    }

//在我显示之后我无法提醒()点击了什么按钮

1 个答案:

答案 0 :(得分:0)

由于缺少问题信息,我很难理解问题是什么......如果您只是想点击按钮的ID,请试试这个:

$(document).ready(function() {

      $("button").click(function() {

         var id = $(this).attr("id");
         alert(id);

      });

});   

我已经制作了一个jsBin来帮忙:http://jsbin.com/vuhoquworo/edit?html,output