我有从数据库中删除记录的代码:-
$(document).ready(function(){
$(".delete_class").click(function(){
var del_id = $(this).attr('id');
$.ajax({
type:'POST',
url:'admin.php?page=branches-and-city/branches-and-city.php&action=deletepicdone',
data:'delete_id='+del_id,
success:function(data) {
if(data) {
$("#pic"+del_id).fadeOut(500,function(){
$("#pic"+del_id).remove();
});
alert ("تم مسح الصورة.");
} else { alert("لم يتم مسح الصورة الرجاء المحاولة فيما بعد."); }
}
});
});
});
所以我需要当浏览器将数据发送到“ admin.php?page=branches-and-city/branches-and-city.php&action=deletepicdone
”的 url 时,给我看图片或一些叫我删除的东西。
我怎样才能做到这一点。