SVGGraphicsElement: cut event - Web APIs 编辑

The cut event is fired on an SVGGraphicsElement when the user has initiated a "cut" action through the browserʼs user interface.

If the user attempts a cut action on uneditable content, the cut event still fires but the event object contains no data.

BubblesYes
CancelableYes
InterfaceClipboardEvent
Event handler propertyoncut

The eventʼs default action is to copy the current selection (if any) to the system clipboard and remove it from the document.

A handler for this event can modify the clipboard contents by calling setData(format, data) on the event's  ClipboardEvent.clipboardData property, and cancelling the default action using event.preventDefault().

Note though that cancelling the default action will also prevent the document from being updated. So an event handler which wants to emulate the default action for "cut" while modifying the clipboard must also manually remove the selection from the document.

The handler cannot read the clipboard data.

It's possible to construct and dispatch a synthetic cut event, but this will not affect the system clipboard or the document's contents.

Specifications

SpecificationStatusComment
Scalable Vector Graphics (SVG) 2Candidate RecommendationDefinition that the clipboard events apply to SVG elements.
Clipboard API and eventsWorking DraftInitial definition

See also

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:102 次

字数:4508

最后编辑:8年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文