UNPKG
@alicloud/console-toolkit-plugin-docs
Version:
alpha (1.2.61-alpha.2)
beta (1.2.56)
latest (1.2.64)
1.2.64
1.2.63
1.2.62
1.2.61
1.2.61-alpha.2
1.2.61-alpha.1
1.2.61-alpha.0
1.2.59
1.2.56
1.2.56-alpha.4
1.2.56-alpha.2
1.2.56-alpha.1
1.2.56-alpha.0
console toolkit plugin for build docs
@alicloud/console-toolkit-plugin-docs
/
src2
/
utils
/
copy.ts
10 lines
(9 loc)
•
302 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
export
function
copy
()
{ // let codeText = document.getElementById(
"code"
).innerText; // let
input
= document.createElement(
"textarea"
); //
input
.value = codeText; // document.body.appendChild(
input
); //
input
.
select
(); // document.execCommand(
"Copy"
); //
input
.style.display =
"none"
; }