ClipboardEvent()
ClipboardEvent()
构造函数返回一个新建的 ClipboardEvent
对象,这个对象表示与修改剪切板相关的事件,这些事件包括 cut
、 copy
和 paste
事件。
语法
var clipboardEvent = new ClipboardEvent(type[, options]);
参数
ClipboardEvent()
构造函数也从 Event()
继承参数。
- type
-
一个
DOMString
字符串,描述了ClipboardEvent
事件类型的名字,大小写敏感,可以是:'copy'
、'cut'
或者'paste'
。 - options 可选
-
选项如下:
clipboardData
: 一个DataTransfer
containing the data concerned by the clipboard event.dataType
非标准 : ADOMString
containing the MIME-type of the data contained in thedata
argument.data
非标准 : ADOMString
containing the data concerned by the clipboard event.
规范
Specification |
---|
Clipboard API and events # dom-clipboardevent-clipboardevent |
浏览器兼容性
BCD tables only load in the browser
相关链接
- 与复制相关的事件:
copy
,cut
,paste
- 所属的
ClipboardEvent
接口。