我有一个 javascript 项目,并且有一些代码用于在 div 中创建一些子 div:
var fragment = document.createDocumentFragment();
// code here to add divs in fragment
this._container.appendChild(fragment);
' this ' 是我创建的对象,_container是一个 div。this._container 肯定是一个现有的 div。在 this._container.appendChild(fragment) 之后,div 正确显示在我的 html 表单上。
当我在 Visual Studio 中调试它时,片段中的元素显示在文档下。
有人知道为什么吗?提前致谢。