SVGGraphicsElement: copy event - Web APIs 编辑

The copy event fires on SVGGraphicsElements when the user initiates a copy action through the browser's user interface.

BubblesYes
CancelableYes
InterfaceClipboardEvent
Event handler propertyoncopy

The event's default action is to copy the selection (if any) to the clipboard.

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 event's default action using event.preventDefault().

However, the handler cannot read the clipboard data.

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

Example

HTML

<?xml version="1.0" encoding="UTF-8"?>
<svg viewBox="0 0 100 30" width="600" height="320" xmlns="http://www.w3.org/2000/svg">
    <text x="5" y="10" id="text-to-copy">Copy this text</text>
    <foreignObject x="5" y="20" width="90" height="20">
        <input xmlns="http://www.w3.org/1999/xhtml" placeholder="Paste it here"/>
    </foreignObject>
</svg>

CSS

input {
  font-size: 10px;
  width: 100%;
  height: 90%;
  box-sizing: border-box;
  border: 1px solid black;
}

JavaScript

document.getElementsByTagName("text")[0].addEventListener("copy", evt => {
  evt.clipboardData.setData('text/plain', document.getSelection().toString().toUpperCase());
  evt.preventDefault();
});

Result

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技术交流群

发布评论

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

词条统计

浏览:130 次

字数:5190

最后编辑:6年前

编辑次数:0 次

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