aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/api
diff options
context:
space:
mode:
authorleto <1907984744@qq.com>2021-05-18 11:36:30 +0800
committerGitHub <noreply@github.com>2021-05-18 11:36:30 +0800
commit51e31938e5ad3c2f41b7d9b333c927269a021590 (patch)
tree17daa6b07336bd1498a5b5400a20cc78fe8ba126 /files/zh-cn/web/api
parent40edc745dfb5c152e12080748f9357b376e8dbe9 (diff)
downloadtranslated-content-51e31938e5ad3c2f41b7d9b333c927269a021590.tar.gz
translated-content-51e31938e5ad3c2f41b7d9b333c927269a021590.tar.bz2
translated-content-51e31938e5ad3c2f41b7d9b333c927269a021590.zip
Update Web/API/EventTarget/addEventListener, zh-CN (#905)
Co-authored-by: WangLeto <wanglitong@bytedance.com>
Diffstat (limited to 'files/zh-cn/web/api')
-rw-r--r--files/zh-cn/web/api/eventtarget/addeventlistener/index.html1
1 files changed, 1 insertions, 0 deletions
diff --git a/files/zh-cn/web/api/eventtarget/addeventlistener/index.html b/files/zh-cn/web/api/eventtarget/addeventlistener/index.html
index 0abe412321..0e0e8580b0 100644
--- a/files/zh-cn/web/api/eventtarget/addeventlistener/index.html
+++ b/files/zh-cn/web/api/eventtarget/addeventlistener/index.html
@@ -40,6 +40,7 @@ Non-standard_inline}}); // Gecko/Mozilla only
<li><code>capture</code>:  {{jsxref("Boolean")}},表示 <code>listener</code> 会在该类型的事件捕获阶段传播到该 <code>EventTarget</code> 时触发。</li>
<li><code>once</code>:  {{jsxref("Boolean")}},表示 <code>listener 在添加之后最多只调用一次。如果是</code> <code>true,</code> <code>listener</code> 会在其被调用之后自动移除。</li>
<li><code>passive</code>: {{jsxref("Boolean")}},设置为true时,表示 <code>listener</code> 永远不会调用 <code>preventDefault()</code>。如果 listener 仍然调用了这个函数,客户端将会忽略它并抛出一个控制台警告。查看 {{anch("使用 passive 改善的滚屏性能")}} 了解更多.</li>
+ <li><code>signal</code>:{{domxref("AbortSignal")}},该 <code>AbortSignal</code> 的 {{domxref("AbortController/abort()", "abort()")}} 方法被调用时,监听器会被移除。</li>
<li>{{non-standard_inline}}<code> mozSystemGroup</code>: 只能在 XBL 或者是 Firefox' chrome 使用,这是个 {{jsxref("Boolean")}},表示 <code>listener </code>被添加到 system group。</li>
</ul>
</dd>