diff options
Diffstat (limited to 'files/zh-cn/web/web_components/using_custom_elements/index.html')
-rw-r--r-- | files/zh-cn/web/web_components/using_custom_elements/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/zh-cn/web/web_components/using_custom_elements/index.html b/files/zh-cn/web/web_components/using_custom_elements/index.html index 2beef20c92..ecb3e6cd95 100644 --- a/files/zh-cn/web/web_components/using_custom_elements/index.html +++ b/files/zh-cn/web/web_components/using_custom_elements/index.html @@ -44,7 +44,7 @@ translation_of: Web/Web_Components/Using_custom_elements <p>上面只是一个简单的例子,我们能做的不只这些。在构造函数中,我们可以设定一些生命周期的回调函数,在特定的时间,这些回调函数将会被调用。例如,<code>connectedCallback</code>会在 custom element首次被插入到文档DOM节点上时被调用,而 <code>attributeChangedCallback</code>则会在 custom element增加、删除或者修改某个属性时被调用。</p> -<p>你可以在 {{anch("使用生命周期回调函数")}}段落中了解更多相关信息。</p> +<p>你可以在 <a href="#使用生命周期回调函数">使用生命周期回调函数</a>段落中了解更多相关信息。</p> <p>共有两种 custom elements:</p> |