例如我有这张表:
id name action
1 john x
2 doe x
如果我在 id 为 1 时单击行中的 x ,它将被删除,我该怎么做?
$('.btnDeleteitem').live('click', function() {
//
$.ajax({
url: 'wp-content/themes/twentyeleven-child/Delete.Item.php',
type: 'post',
data: { asin: $(this).attr('alt') },
success:function(){
//
}
});
注意:表中的数据来自数据库