noesis 汉化:用javascript操作DOM的高手请进

来源:百度文库 编辑:神马品牌网 时间:2024/04/28 20:03:50
发现DOM里有一些不太常用的对象。
Node, DocumentFragment, Element
如何创建?
如何使用?
我写了下面代码执行的时候不显示文字,为什么?
(我知道如果不用DocumentFragment就可以显示,但我现在希望学习使用之。)
frag = document.createDocumentFragment();
span = document.createElement("span");
text = document.createTextNode("text");
document.body.appendChild(frag);
frag.appendChild(span);
span.appendChild(text);