内建 shadow DOM Shadow tree 封装 参考 总结 Shadow DOM 为封装而生。它可以让一个组件拥有自己的「影子」DOM 树,这个 DOM 树不能在主文档中被任意访问,可能拥有局部样式规则,还有其他特性。 内建 shadow DOM 你是否曾经思考过复杂的浏览器控件是如何被创建和添加样式的? 比如 <input t...
DOM Manipulation DOM Manipulation Another class of functions that is often considered difficult to test is code that directly manipulates the DOM. Let’s see how we can test the...
DOM 操作 DOM 操作 Another class of functions that is often considered difficult to test is code that directly manipulates the DOM. Another class of functions that is often considere...
Virtual DOM Virtual DOM Virtual DOM (虚拟DOM)是Nerv 从React 上继承的一项非常优秀的技术思想。 DOM,文档对象模型,它是JavaScript与页面元素交互的桥梁,可以让我们使用JavaScript去方便地修改、添加页面元素。但我们都知道,直接操作DOM性能较差,人为去操作DOM可能会产生一些性能糟...