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 ได้อย่างไร