目前我正在从数据库中提取数据以动态构建表。提取数据后,我希望自己和/或我的用户看到一个选项(按钮),如果他们单击该按钮,我可以从表以及数据库中编辑/删除该行。
我是 jQuery 新手,所以我不确定应该使用什么$.ajax()
功能。这是我的 php 代码:
foreach($stmt as $item){
echo '
</td>
<td>'.$item['asin'].'</td>
<td>'.$item['weight'].'</td>
<td>'.$item['dimension'].'</td>
<td>'.$item['category'].'</td>
<td>';
echo '<button type="button" class="btn">Update Me!</button>';
echo '
</td>
</tr>';
}
echo '</tbody>
</table>';
这是我的 jQuery 代码:
$(document).on('click', '.btn', function() {
$.ajax({
//code here etc
success:function(){
//what to put here?
}
});
}