标签: javascript web dom w3c custom-element
在W3C自定义元素规范中,提到了在自定义元素构造函数中:
该元素不得获得任何属性或子元素,因为这违反了使用profile/edit或createElement方法的消费者的期望。
profile/edit
createElement
我发现很难理解我们违反了什么期望。我最初的猜测是,使用createElementNS创建自定义元素不会在幕后调用Constructor,但是基于我所做的概念证明,情况似乎并非如此。
createElementNS
答案 0 :(得分:0)
首先阅读答案和:
然后这些
Failed to execute 'createElement' on 'Document': The result must not have children
Deferred setAttribute call in Custom Element constructor causes DOM error. Is it a bug?