我有一个使用JSON创建的表,我想在行中添加一个按钮,以选择从其来源的数据库中删除该记录。
如何使此按钮正常工作?
<table id="myTable">
<tr>
<th>FirstName</th>
<th>Last Name</th>
<th><th>
</tr>
</table>
<script type="text/javascript">
$(document).ready(function(){
var url = "api2.php";
$.getJSON(url,function(json){
$.each(json,function(i,dat){
$("#myTable").append(
'<tr><td>' + dat.firstName + '</td>' +
'<td>' + dat.lastName + '</td>' +
'<td><form><input type="button" value="Delete Record" class="button"></form><br><form><input type="button" value="Edit Record" class="button"></form></td></tr>'
);
});
});
});
</script>
如果有人能够提供帮助,我还想为编辑记录按钮提供功能。