只要存在特定条件,我就会在循环中创建相同的按钮,并且我想为这些按钮运行相同的 jquery 事件处理程序。
问题是事件处理程序仅适用于生成的第一个按钮。
我的按钮是这样生成的:
<?php while($row_c= mysqli_fetch_array($result_comments))
{ ?>
<button name="comment" id="comment" class="button_comment" value="Post">Post</button>
<?php } ?>
我使用的jquery是这样的:
$('.button_comment').click(function()
{
//some staff thats done here
});
应该怎么做,以便事件处理程序适用于生成的所有按钮?谢谢