//删除终端设备
$("img[id=remove]").bind("click",function(e)
{
var img = $(this);
var memberDeviceID = $(this).attr("value");
var datatemp = "memberDeviceID="+memberDeviceID;
$.ajax
({
type: "get",
url: "delectDevice.action",
data: datatemp,
error: function(message)
{
alert("报错了 ,error");
$("#errorCode").html("<font id='errorCodeid' color='red'>"+message+"</font>");
},
success: function(msg)
{
$("#errorCode").html("<font id='errorCodeid' color='red'>"+msg+"</font>");
$("#errorCodeid").fadeOut(5000);
img.parent().parent().remove();
}
});
});
});
页面删除不刷新, 返回的 success里面取不到 $(this ) 对象