$('.remove').bind('click',function(){ var div = $(this).parent(); //先获取父级元素 $.ajax({ type:'post', url:$(this).attr('href'), dataType:'json', data:{id:$(this).attr('id')}, success:function(msg){ if(msg.error==0){ alert(msg.msg); }else{ div.remove(); //再删除 } } }); return false; }); |