Skip to content

Instantly share code, notes, and snippets.

@motsu0
Last active February 4, 2020 12:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save motsu0/12b92d0c2d3abbbf842aa7a234135c54 to your computer and use it in GitHub Desktop.
Save motsu0/12b92d0c2d3abbbf842aa7a234135c54 to your computer and use it in GitHub Desktop.
<input type="text" id="copy-text" value="これをコピーさせる"> <button id="bt-copy">copy</button>
document.getElementById('bt-copy').addEventListener('click',()=>{
const target = document.getElementById('copy-text');
target.select();
document.execCommand('copy');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment