作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用模板元素在 A 框架中动态创建新实体。辅助函数如下所示:
function htmlToElement(html) {
const template = document.createElement('template');
// Never return a text node of whitespace as the result.
html = html.trim();
template.innerHTML = html;
return template.content.firstChild;
}
我这样使用它:
document.querySelector('a-scene').addEventListener('loaded', () => {
const cube = htmlToElement('<a-box position="0 1 -2"></a-box>')
document.querySelector('a-scene').appendChild(cube);
});
这在 Firefox 中效果很好,但在 Chrome 中该实体不会显示。如果用 document.querySelector('a-box')
之类的东西查看实体,则没有 object3D
属性,所以我不认为将元素附加到场景中正在 Chrome 上使用 A-Frame 注册元素。为了让它在 Chrome 中工作,我缺少什么?这是 pen .
谢谢!
最佳答案
innerHMTL 的模板行为可能会有所不同。您可以使用createContextualFragment
。要转储 A 框架的原始 HTML,请执行以下操作:
el.appendChild(document.createRange().createContextualFragment(str));
关于javascript - A-Frame appendChild 在 Firefox 中有效,但在 Chrome 中无效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50572268/
我是一名优秀的程序员,十分优秀!