作者:mobiledu2502928311 | 来源:互联网 | 2023-09-14 10:48
php中的删除 php代码
$(‘.del‘).click(function(){
var id = $(this).data(‘id‘);
var that = $(this);
layer.confirm(‘确定删除‘ + id + ‘吗?‘, {
icon: 3,
title: ‘提示‘
},
function(index){
$.ajax({
url:"/json.php",
type: ‘post‘,
data: {id:id},
dataType: ‘json‘,
success: function(res) {
console.log(res);
layer.close(index);
if (res.code == 1) {
// that.parents(‘tr‘).remove();
location.reload();
} else {
layer.msg(‘删除失败!‘);
}
}
});
});
});
一个jq的函数就能实现
ajax代码
if($_POST){
$ids=$_POST[‘id‘];
$cOnn=new mysqli(‘localhost‘,‘root‘,‘root‘,‘qiyewangzhan‘);
$sql="delete from product where id=$ids" ;
$res=$conn->query($sql);
$arr=[];
}
if($res){
$arr[‘code‘]=1;
}else{
$arr[‘code‘]=2;
}
echo json_encode($arr);