जावास्क्रिप्ट के साथ टेक्स्ट को क्लिपबोर्ड पर कॉपी करने के लिए निम्नलिखित कोड है -
उदाहरण
<!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>
आउटपुट
यह निम्नलिखित आउटपुट देगा -
'कॉपी टेक्स्ट' बटन पर क्लिक करने पर -