//删除
function delcon(id){
if(confirm('您确认要删除吗?'))
{
if (id!=null && id!='') {
var url = del.html?op=dm&mid=" + id;
xmlHttp.open("GET", url, true);
xmlHttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded;");
xmlHttp.setRequestHeader("If-Modified-Since","0");
xmlHttp.send(null);
xmlHttp.onreadystatechange =function()
{
if (xmlHttp.readyState == 4 && xmlHttp.status == 200) {
var delMDiv = document.getElementById("e_"+id);
var parentM = delMDiv.parentNode;
var removedMChild= parentM.removeChild(delMDiv);
}
}
}
}
}
xmlHttp.setRequestHeader("If-Modified-Since","0");这句非常重
更多内容,请详见广州网站建设、广州网站推广。