36. HTMLCollection Objet Note:?Collections in the HTML DOM are assumed to be?live?meaning that they are automatically updated when the underlying document is changed.
46. DocumentFragment 类似于 document 的对象 有用的占位符 暂时存放那些要一次插入文档的节点 var fragment = document.createDocumentFragment(); var heading = fragment.appendChild(document.createElement('h1')); heading.appendChild(document.createTextNode('Quotes by Yoda')); document. body.appendChild(fragment);
47. Web Workers Web Workers 为 JavaScript 脚本提供了一种能在后台进程中运行的方法。 一旦它被创建, Web Workers 就可以通过 postMessage() 向任务池发送任务请求,执行完之后再通过 postMessage() 返回消息给创建者指定的事件处理程序 Web Workers 进程能够在不影响用户界面的情况下处理任务,并且,它还可以使用 XMLHttpRequest 来处理 I/O 注意:通常,后台进程(包括 web workers 进程)不能对 DOM 进行操作。如果希望后台程序处理的结果能够改变 DOM ,只能通过返回消息给创建者的回调函数进行处理