-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (32 loc) · 1.04 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>shadow Dom</title>
</head>
<body>
<hello-shadow-dom></hello-shadow-dom>
<button id="change"> 更改链接名称 </button>
<script>
class CustomElement extends HTMLElement {
constructor() {
super()
this.shadowRootDom = this.attachShadow({ mode: 'closed' }) // open | closed
}
connectedCallback() {
this.shadowRootDom.innerHTML = '<a href="#">My link</a>'
}
}
customElements.define('hello-shadow-dom', CustomElement)
const customEle = document.querySelector('hello-shadow-dom')
console.log('打印 是否 能访问到 shadowRoot', customEle.shadowRoot)
const changeBtn = document.getElementById('change')
changeBtn.addEventListener('click', function () {
if (customEle.shadowRoot) {
customEle.shadowRoot.innerHTML = '链接'
}
})
</script>
</body>
</html>