CustomElementRegistry.upgrade()
upgrade()
は CustomElementRegistry
インターフェイスのメソッドで、 Node
サブツリー内のすべてのシャドウを含むカスタム要素を、メイン文書に接続する前であってもアップグレードします。
構文
js
customElements.upgrade(root);
引数
返値
なし。
例
HTML 仕様書 から取りました。
js
const el = document.createElement("spider-man");
class SpiderMan extends HTMLElement {}
customElements.define("spider-man", SpiderMan);
console.assert(!(el instanceof SpiderMan)); // not yet upgraded
customElements.upgrade(el);
console.assert(el instanceof SpiderMan); // upgraded!
仕様書
Specification |
---|
HTML Standard # dom-customelementregistry-upgrade-dev |
ブラウザーの互換性
BCD tables only load in the browser