在写文章系统的删除功能。需要删除一行数据。在删除的页面,需要jQuery 删除一hang. 局部刷新数据。
$(".del").click(function(){
var id = $(this).attr("hid");
var t = $(this).parent().parent();
var i = confirm("是否确认删除");
if(i){
$.post("<?php echo $this->createUrl('del');?>",{id:id},function(m){
if(m==1){
//console.log(id);
// window.location.reload();
// $(this).parent().parent().remove(); 是没有作用的。
t.remove();
}else{
alert("删除失败");
}
});
}else{
//alert("删除失败");
} });
在使用 $(this).parent()的时候,需要对他进行操作,我们要先得到 他的父级,然后在进行 操作。如上例。