倾心于你

导航

 

<script src="Scripts/jquery-3.3.1.min.js"></script>
<script>

//删除代码
$(function () {

$(".del").click(function () {
//获取id值
var $this = $(this);
var id = $this.attr("data-id");
$.ajax({
type: "post",
url: "./DelClass.ashx",
data: { cid: id },
//处理成功
success: function (res) {
if (res == 1) {
$this.closest("tr").remove();

}
},
//处理解决错误
error: function (response) {
console.log(response);
}
})
})

})

posted on 2021-11-25 18:56  倾心于你  阅读(76)  评论(0)    收藏  举报