customElementsupgrade()方法升级所有的shadow-containing个自定义元素的节点子树中的文档,甚至在它们连接到主文档之前。
用法:
customElements.upgrade(root);
Parameters:
- root:具有要升级的shadow-containing后代元素的节点实例。
返回值:此方法返回void。
例:
HTML
<!DOCTYPE HTML>
<html>
<body style="text-align:center;">
<h1 style="color:green;">
GeeksforGeeks
</h1>
<p>
HTML | customElements upgrade() method
</p>
<button onclick="Geeks()">
Check
</button>
<button onclick="upg()">Upgrade</button>
<p id="a"></p>
<script>
var a = document.getElementById("a");
const el = document
.createElement("gfg-custom-element");
class CustomEl extends HTMLElement {
constructor() {
super()
this.attachShadow({ mode:'open' })
this.shadowRoot.innerHTML = `
<h1 style="color:green;">
GeeksforGeeks Custom Element Data
</h1>
`
}
}
window.customElements.define(
'gfg-custom-element', CustomEl);
function Geeks() {
a.innerHTML = "Upgraded:"
+ (el instanceof CustomEl);
}
function upg() {
customElements.upgrade(el);
}
</script>
</body>
</html>
输出:
支持的浏览器:
- 谷歌浏览器
- Edge
- Firefox
- Safari
- Opera
相关用法
- HTML DOM customElements get()用法及代码示例
- HTML DOM customElements define()用法及代码示例
- HTML DOM window customElements属性用法及代码示例
- HTML DOM after()用法及代码示例
- HTML DOM before()用法及代码示例
- HTML DOM contains()用法及代码示例
- HTML DOM createElement()用法及代码示例
- HTML DOM insertAdjacentElement()用法及代码示例
- HTML DOM toggleAttribute()用法及代码示例
- HTML DOM insertAdjacentText()用法及代码示例
- HTML DOM removeAttribute()用法及代码示例
- HTML DOM queueMicrotask()用法及代码示例
- HTML DOM createHTMLDocument()用法及代码示例
- HTML DOM execCommand()用法及代码示例
- HTML DOM hasChildNodes()用法及代码示例
- HTML DOM appendChild()用法及代码示例
- HTML DOM createDocumentFragment()用法及代码示例
- HTML DOM Storage key()用法及代码示例
- HTML DOM removeAttributeNode()用法及代码示例
注:本文由纯净天空筛选整理自taran910大神的英文原创作品 HTML DOM customElements upgrade() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。