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>