关于javascript document.createDocumentFragment()


Posted in Javascript onApril 04, 2009

他支持以下DOM2方法:
appendChild, cloneNode, hasAttributes, hasChildNodes, insertBefore, normalize, removeChild, replaceChild.
也支持以下DOM2?傩?
attributes, childNodes, firstChild, lastChild, localName, namespaceURI, nextSibling, nodeName, nodeType, nodeValue, ownerDocument, parentNode, prefix, previousSibling, textContent.
其他方法可以??ocumentFragment 作?橐????担?ū热?ode的 appendChild和insertBefore 方法),??樱?ragment 就可以被追加到父?ο笾小
Example:

var frag = document.createDocumentFragment(); 
frag.appendChild(document.createTextNode('Ipsum Lorem')); 
document.body.appendChild(frag);

document.createDocumentFragment()说白了就是为了节约使用DOM。每次JavaScript对DOM的操作都会改变页面的变现,并重新刷新整个页面,从而消耗了大量的时间。为解决这个问题,可以创建一个文档碎片,把所有的新节点附加其上,然后把文档碎片的内容一次性添加到document中。
var oui=document.getElementById("oItem"); 
for(var i=0;i<10;i++) 
{ 
var oli=document.createElement("li"); 
oui.appendChild(oli); 
oli.appendChild(document.createTextNode("Item"+i)); 
}

上面的代码在循环中调用了oui.appendChild(oli),每次执行这条语句后,浏览器都会更新页面。其次下面的oui.appendChild()添加了文本节点,也要更新页面。所以一共要更新页面20次。
为了页面的优化,我们要尽量减少DOM的操作,将列表项目在添加文本节点之后再添加,并合理地使用creatDocumentFragment(),代码如下:
var oui=document.getElementById("oItem"); 
var oFragment=document.createDocumentFragment(); 
for(var i=0;i<10;i++){ 
var oli=document.createElement("li"); 
oli.appendChild(document.createTextNode("Item"+i)); 
oFragment.appendChild(oli); 
} 
oui.appendChild(oFragment);

W3C参考:http://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-B63ED1A3
-------------------------------------------
DocumentFragment is a "lightweight" or "minimal" Document object. It is very common to want to be able to extract a portion of a document's tree or to create a new fragment of a document. Imagine implementing a user command like cut or rearranging a document by moving fragments around. It is desirable to have an object which can hold such fragments and it is quite natural to use a Node for this purpose. While it is true that a Document object could fulfill this role, a Document object can potentially be a heavyweight object, depending on the underlying implementation. What is really needed for this is a very lightweight object. DocumentFragment is such an object.

Furthermore, various operations -- such as inserting nodes as children of another Node -- may take DocumentFragment objects as arguments; this results in all the child nodes of the DocumentFragment being moved to the child list of this node.

The children of a DocumentFragment node are zero or more nodes representing the tops of any sub-trees defining the structure of the document. DocumentFragment nodes do not need to be well-formed XML documents (although they do need to follow the rules imposed upon well-formed XML parsed entities, which can have multiple top nodes). For example, a DocumentFragment might have only one child and that child node could be a Text node. Such a structure model represents neither an HTML document nor a well-formed XML document.

When a DocumentFragment is inserted into a Document (or indeed any other Node that may take children) the children of the DocumentFragment and not the DocumentFragment itself are inserted into the Node. This makes the DocumentFragment very useful when the user wishes to create nodes that are siblings; the DocumentFragment acts as the parent of these nodes so that the user can use the standard methods from the Node interface, such as insertBefore and appendChild.

Javascript 相关文章推荐
33种Javascript 表格排序控件收集
Dec 03 Javascript
jQuery中判断一个元素是否为另一个元素的子元素(或者其本身)
Mar 21 Javascript
JS+css 图片自动缩放自适应大小
Aug 08 Javascript
JavaScript实现的双向跨域插件分享
Jan 31 Javascript
JS仿淘宝实现的简单滑动门效果代码
Oct 14 Javascript
JavaScript中的Number数字类型学习笔记
May 26 Javascript
微信小程序 WebSocket详解及应用
Jan 21 Javascript
vue通过watch对input做字数限定的方法
Jul 13 Javascript
详解node nvm进行node多版本管理
Oct 21 Javascript
vue中简单弹框dialog的实现方法
Feb 26 Javascript
vue中element 上传功能的实现思路
Jul 06 Javascript
基于Node.js的大文件分片上传示例
Jun 19 Javascript
HTML 自动伸缩的表格Table js实现
Apr 01 #Javascript
Javascript 原型和继承(Prototypes and Inheritance)
Apr 01 #Javascript
说说掌握JavaScript语言的思想前提想学习js的朋友可以看看
Apr 01 #Javascript
setTimeout 不断吐食CPU的问题分析
Apr 01 #Javascript
js Flash插入函数免激活代码
Mar 31 #Javascript
响应鼠标变换表格背景或者颜色的代码
Mar 30 #Javascript
用JavaScript实现单继承和多继承的简单方法
Mar 29 #Javascript
You might like
PHP has encountered a Stack overflow问题解决方法
2014/11/03 PHP
WAMP环境中扩展oracle函数库(oci)
2015/06/26 PHP
PHP实现的线索二叉树及二叉树遍历方法详解
2016/04/25 PHP
Eval and new funciton not the same thing
2012/12/27 Javascript
jquery实现LED广告牌旋转系统图片切换效果代码分享
2015/08/26 Javascript
jquery中cookie用法实例详解(获取,存储,删除等)
2016/01/04 Javascript
AngularJS Ajax详解及示例代码
2016/08/17 Javascript
JS设置手机验证码60s等待实现代码
2017/06/14 Javascript
vue实现全选、反选功能
2020/11/17 Javascript
vue2.0 可折叠列表 v-for循环展示的实例
2018/09/07 Javascript
JS实现在线ps功能详解
2019/07/31 Javascript
JQuery样式与属性设置方法分析
2019/12/07 jQuery
vue实现鼠标移过出现下拉二级菜单功能
2019/12/12 Javascript
js实现旋转木马轮播图效果
2020/01/10 Javascript
基于better-scroll 实现歌词联动功能的代码
2020/05/07 Javascript
[03:48]2014DOTA2 TI专访71DK夺冠不靠小组赛高排名
2014/07/11 DOTA
[01:14:35]DOTA2上海特级锦标赛B组资格赛#1 Alliance VS Fnatic第一局
2016/02/26 DOTA
[42:32]VP vs RNG 2019国际邀请赛淘汰赛 败者组 BO3 第一场 8.21.mp4
2020/07/19 DOTA
使用python实现正则匹配检索远端FTP目录下的文件
2015/03/25 Python
python使用jieba实现中文分词去停用词方法示例
2018/03/11 Python
Python unittest单元测试框架总结
2018/09/08 Python
Python实现分段线性插值
2018/12/17 Python
Python 实现数据结构中的的栈队列
2019/05/16 Python
windows下Python安装、使用教程和Notepad++的使用教程
2019/10/06 Python
为有想象力的人提供的生活方式商店:Firebox
2018/06/04 全球购物
Kiehl’s科颜氏西班牙官方网站:源自美国的植物护肤品牌
2020/02/22 全球购物
Puccini乌克兰:购买行李箱、女士手袋网上商店
2020/08/06 全球购物
文科生自我鉴定
2014/02/15 职场文书
十佳家长事迹材料
2014/08/26 职场文书
医院反腐倡廉演讲稿
2014/09/16 职场文书
党员剖析材料范文
2014/09/30 职场文书
母亲去世追悼词
2015/06/23 职场文书
新教师教学工作总结
2015/08/12 职场文书
Redis6.0搭建集群Redis-cluster的方法
2021/05/08 Redis
nginx作grpc的反向代理踩坑总结
2021/07/07 Servers
Java实现贪吃蛇游戏的示例代码
2022/09/23 Java/Android