$(".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("删除失败");