Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

JavaScript로 클립보드에 텍스트를 복사하는 방법은 무엇입니까?


다음은 JavaScript로 텍스트를 클립보드에 복사하는 코드입니다 -

예시

<!DOCTYPE html>
<html>
<head>
<style>
button {
   border: none;
   outline: none;
   background-color: rgb(191, 187, 255);
   color: black;
   font-weight: bold;
   padding: 10px;
}
input {
   padding: 10px;
}
</style>
</head>
<body>
<h1>Clipboard example</h1>
<h2>Click the button below to copy text and paste it somewhere</h2>
<input type="text" value="Hello World" class="textInput" />
<button class="copy">Copy text</button>
<script>
document.querySelector(".copy").addEventListener("click", copyText);
function copyText() {
   var copyText = document.querySelector(".textInput");
   copyText.select();
   copyText.setSelectionRange(0, 99999);
   document.execCommand("copy");
   alert("The copied text is: " + copyText.value);
}
</script>
</body>
</html>

출력

이것은 다음과 같은 출력을 생성합니다 -

JavaScript로 클립보드에 텍스트를 복사하는 방법은 무엇입니까?

'텍스트 복사' 버튼 클릭 시 -

JavaScript로 클립보드에 텍스트를 복사하는 방법은 무엇입니까?