|
|
@ -2,18 +2,14 @@
|
|
|
|
* 문자열 클립보드 복사
|
|
|
|
* 문자열 클립보드 복사
|
|
|
|
**************************************************************************/
|
|
|
|
**************************************************************************/
|
|
|
|
function clipboardCopy(string){
|
|
|
|
function clipboardCopy(string){
|
|
|
|
if(window.isSecureContext){
|
|
|
|
var textArea = document.createElement("textarea");
|
|
|
|
navigator.clipboard.writeText(string);
|
|
|
|
textArea.style.position = "fixed";
|
|
|
|
} else {
|
|
|
|
textArea.value = string;
|
|
|
|
var textArea = document.createElement("textarea");
|
|
|
|
document.body.appendChild(textArea);
|
|
|
|
textArea.style.position = "fixed";
|
|
|
|
textArea.focus();
|
|
|
|
textArea.value = string;
|
|
|
|
textArea.select();
|
|
|
|
document.body.appendChild(textArea);
|
|
|
|
document.execCommand('copy');
|
|
|
|
textArea.focus();
|
|
|
|
document.body.removeChild(textArea);
|
|
|
|
textArea.select();
|
|
|
|
|
|
|
|
document.execCommand('copy');
|
|
|
|
|
|
|
|
document.body.removeChild(textArea);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
/**************************************************************************
|
|
|
|