0

Javascript 终于有了“复制”事件,我们不再需要使用 flash!(好吧,我们仍然应该使用 flash 作为后备)。

http://dev.w3.org/2006/webapi/clipops/#x3.1.1-copy-event

我试图弄清楚如何:单击锚标记(复制)并将(文本输入src /或innerHTML)复制到剪贴板。这是 HTML/CSS http://jsfiddle.net/LkUhM/的小提琴

谁能指导我?

:::::HTML::::::

<div>
<ul>
    <li><input type="text" class="input" value="This is the next that will be copied!" /><a href="#" id="copy" class="copy">Copy!</a></li>
    <li><input type="text" class="input" value="This is the next that will be copied!" /><a href="#" id="copy" class="copy">Copy!</a></li>
    <li><input type="text" class="input" value="This is the next that will be copied!" /><a href="#" id="copy" class="copy">Copy!</a></li>
    <li><input type="text" class="input" value="This is the next that will be copied!" /><a href="#" id="copy" class="copy">Copy!</a></li>
</ul>

<textarea></textarea>

4

1 回答 1

1
  1. 您正在查看该规范的旧版本。新的在这里:http ://www.w3.org/TR/clipboard-apis/
  2. 根据当前规范,您不能以编程方式模拟任何这些剪贴板事件。我正在尝试与适当的 W3C 工作组合作,将其更改为至少允许在用户单击和/或发出键盘事件时进行模拟(就像您如何使用 Flash 获得对剪贴板的写访问权限一样)。
于 2013-09-10T03:14:00.190 回答