<html> <head> <meta charset="UTF-8" /> <script src="https://code.jquery.com/jquery-2.1.4.min.js"></script> <script src="https://cdn.jsdelivr.net/clipboard.js/1.5.3/clipboard.min.js"></script> <script> $(function () { var clipboard = new Clipboard('.btn'); }); </script> </head> <body> <!-- コピー対象 --> <input id="foo" value="https://github.com/zenorocha/clipboard.js.git" size="60"> <!-- コピーボタン --> <bu

