<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);
}
})
})
})
浙公网安备 33010602011771号