1. ZeroClipboardを読み込む <script src="http://cdnjs.cloudflare.com/ajax/libs/zeroclipboard/2.2.0/ZeroClipboard.min.js"></script> 2. コピーするテキストとボタンの場所を指定 <input id="text" value="Sample Text"> <button id="btn">コピーする</button> var btn = document.getElementById("btn"); var text = document.getElementById("text"); var clip = new ZeroClipboard(btn); clip.on("ready beforecopy", function() { btn.dataset.clipboar