Jvascript clip($ele)
페이지 정보

본문
function clip($ele) {
var string = '';
var textarea = document.createElement("textarea");
document.body.appendChild(textarea);
string = $ele.text();
textarea.value = string;
textarea.select();
document.execCommand("copy");
document.body.removeChild(textarea);
}
- 이전글function SHA256(s) 24.03.26
댓글목록
등록된 댓글이 없습니다.