摘要:
web/Win8开发中经常要在js中动态增加一些element,就需要用到下面的一些方法:appendChild:target.appendChild(newChild)newChild作为target的子节点插入最后的一子节点之后insertBefore:target.insertBefore(newChild,existingChild)newChild作为target的子节点插入到existingChild节点之前existingChild为可选项参数,当为null时其效果与appendChild一样insertAfter:顾名思义,就是在node后面增加new node,但是没有现成的 阅读全文
摘要:
没有removeAll的API,但也十分容易实现:while (node.hasChildNodes()) { node.removeChild(node.lastChild);} 阅读全文