ajax html
ajax 时
request.open("GET", url, true);
request.send(null);
request.onreadystatechange = addrOper; //-->这个函数不能有参数,对于有传参数的,可以function(){addroper(id);}来写
js删除节点n.parentNode.removeChild(n)
document.getElementById("")返回的不是 集合
js中跳出确定对话框
if(confirm("Are you sure to delete this address forever?")){
}
}else{
}
childNodes—返回节点到子节点的节点列表
firstChild—返回节点的首个子节点。
lastChild—返回节点的最后一个子节点。
nextSibling—返回节点之后紧跟的同级节点。
nodeName—返回节点的名字,根据其类型。
nodeType—返回节点的类型。
nodeValue—设置或返回节点的值,根据其类型。
ownerDocument—返回节点的根元素(document对象)。
parentNode—返回节点的父节点。
previousSibling—返回节点之前紧跟的同级节点。
text—返回节点及其后代的文本(IE独有)。
xml—返回节点及其后代的XML(IE独有)。