ต่อไปนี้เป็นรหัสสำหรับสร้างคุณลักษณะ 'คัดลอกไปยังคลิปบอร์ด' บนหน้าเว็บด้วย JavaScript -
ตัวอย่าง
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Document</title> <style> body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; } .result { font-size: 18px; font-weight: 500; color: rebeccapurple; } input, button { padding: 8px; } </style> </head> <body> <h1>Creating Copy to Clipboard</h1> <input class="textCopy" type="text" /> <button class="Btn">Copy Text</button><br /><br /> <input type="text" placeholder="paste here" /> <h3>Click on the above button to copy text from the textbox</h3> <script> let resEle = document.querySelector(".result"); let BtnEle = document.querySelector(".Btn"); let textCopyEle = document.querySelector(".textCopy"); BtnEle.addEventListener("click", () => { textCopyEle.select(); document.execCommand("copy"); }); </script> </body> </html>
ผลลัพธ์
เมื่อพิมพ์บางอย่างในกล่องข้อความแรกและคลิกที่ปุ่ม "คัดลอกข้อความ" -
วางข้อความโดยคลิกซ้ายและเลือกวางในกล่องข้อความ "วางที่นี่" -