如何为自动生成的按钮编写一个on click事件函数

时间:2013-07-14 18:43:51

标签: php jquery button input onclick

<?php

if(isset($_POST['take-attendance'])){
$date = date("d/m");
echo'<center><table><tr><th> Student-Id </th> <th> Name </th> <th>'.$date.'</th></tr>';

foreach($sheet_data as $row) {

    echo '<tr><td>'.$row['id'].'</td><td>'.$row['name'].'</td><td> <input type = "button"  value = "A" name = "'.$row['id'].'" id = "'.$row['id'].'" class = "apbutton" ></td></tr>';

}       
 echo '</table></center>';

} 

?>

<script>

$(".apbutton").live("click", function() {
    var buttonId = $(this).attr("id");
    alert(buttonId);
}); 


</script>
  

这里我已经生成了一个带有类apbutton的输入按钮,我试图获取按钮ID   但这不起作用请告诉我我哪里错了

1 个答案:

答案 0 :(得分:4)

等待代码准备好。 (由于.live已弃用,我已切换为.on

$(function(){

    $(".apbutton").on("click", function() {
        var buttonId = $(this).attr("id");
        alert(buttonId);
    });

});