代码块
<script type="text/javascript">
$(function () {
//注册单击事件
$(".commentId").click(function () {
var deleteid = $(this).siblings(".Idval").val();
var $this = $(this);
$.ajax({
type: "get",//请求方式
url: "HandelDelete.ashx",//一般处理程序
data: {
id: deleteid
},
success: function (result) {
if (result == "ok") {
$this.parents(".container").remove();
}
}
})
})
博客主要提及了代码块,虽未详细阐述,但代码块是信息技术中常见元素,可用于展示、运行代码等。

被折叠的 条评论
为什么被折叠?



