mirror of
https://github.com/hotio/website.git
synced 2026-01-09 07:53:23 +08:00
9 lines
267 B
JavaScript
9 lines
267 B
JavaScript
function CopyToClipboard(id) {
|
|
var r = document.createRange();
|
|
r.selectNode(document.getElementById(id));
|
|
window.getSelection().removeAllRanges();
|
|
window.getSelection().addRange(r);
|
|
document.execCommand('copy');
|
|
window.getSelection().removeAllRanges();
|
|
}
|