From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- files/zh-cn/web/api/window/copy_event/index.html | 72 ++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 files/zh-cn/web/api/window/copy_event/index.html (limited to 'files/zh-cn/web/api/window/copy_event') diff --git a/files/zh-cn/web/api/window/copy_event/index.html b/files/zh-cn/web/api/window/copy_event/index.html new file mode 100644 index 0000000000..b2797de03e --- /dev/null +++ b/files/zh-cn/web/api/window/copy_event/index.html @@ -0,0 +1,72 @@ +--- +title: 'Window: copy event' +slug: Web/API/Window/copy_event +tags: + - API + - Clippboard API + - copy +translation_of: Web/API/Window/copy_event +--- +
{{APIRef}}
+ +

当用户通过浏览器的用户界面启动复制操作时,将触发 copy 事件。

+ + + + + + + + + + + + + + + + + + + + +
Bubbles(支持冒泡)Yes
Cancelable(可撤销)Yes
Interface(接口){{domxref("ClipboardEvent")}}
Event handler property(事件处理程序属性){{domxref("HTMLElement/oncopy", "oncopy")}}
+ +

此事件的原始目标是 {{domxref("Element")}} 它是复制操作的预期目标。您可以在 {{domxref("Window")}} 界面上监听此事件,以在捕获或冒泡阶段对其进行处理。 有关此事件的完整详细信息,请参见 Element: copy event.

+ +

示例

+ +
window.addEventListener('copy', (event) => {
+    console.log('copy action initiated')
+});
+ +

规范

+ + + + + + + + + + + + + + +
规范状态
{{SpecName('Clipboard API', '#clipboard-event-copy')}}{{Spec2('Clipboard API')}}
+ +

浏览器兼容性

+ + + +

{{Compat("api.Window.copy_event")}}

+ +

参考

+ + -- cgit v1.2.3-54-g00ecf