Javascript についに「コピー」イベントが追加され、フラッシュを使用する必要がなくなりました。(まあ、フォールバックとしてフラッシュを使用する必要があります)。
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>