Tìm thấy cách tốt nhất để làm điều đó. ý tôi là cách nhanh nhất: w3school
https://www.w3schools.com/howto/howto_js_copy_clipboard.asp
Bên trong một thành phần chức năng phản ứng. Tạo một hàm có tên là handCopy:
function handleCopy() {
// get the input Element ID. Save the reference into copyText
var copyText = document.getElementById("mail")
// select() will select all data from this input field filled
copyText.select()
copyText.setSelectionRange(0, 99999)
// execCommand() works just fine except IE 8. as w3schools mention
document.execCommand("copy")
// alert the copied value from text input
alert(`Email copied: ${copyText.value} `)
}
<>
<input
readOnly
type="text"
value="exemple@email.com"
id="mail"
/>
<button onClick={handleCopy}>Copy email</button>
</>
Nếu không sử dụng React, w3schools cũng có một cách thú vị để làm điều này với tooltip bao gồm: https://www.w3schools.com/howto/tryit.asp?filename=tryhow_js_copy_clipboard2
Nếu sử dụng React, một suy nghĩ tuyệt vời cần làm: Sử dụng Toastify để cảnh báo tin nhắn.
https://github.com/fkhadra/react-toastify Đây là lib rất dễ sử dụng. Sau khi cài đặt, bạn có thể thay đổi dòng này:
alert(`Email copied: ${copyText.value} `)
Đối với một cái gì đó như:
toast.success(`Email Copied: ${copyText.value} `)
Nếu bạn muốn sử dụng nó, đừng quên Cài đặt toastify. nhập ToastContainer và cũng nâng cao css:
import { ToastContainer, toast } from "react-toastify"
import "react-toastify/dist/ReactToastify.css"
và thêm hộp đựng bánh mì nướng bên trong trở lại.
import React from "react"
import { ToastContainer, toast } from "react-toastify"
import "react-toastify/dist/ReactToastify.css"
export default function Exemple() {
function handleCopy() {
var copyText = document.getElementById("mail")
copyText.select()
copyText.setSelectionRange(0, 99999)
document.execCommand("copy")
toast.success(`Hi! Now you can: ctrl+v: ${copyText.value} `)
}
return (
<>
<ToastContainer />
<Container>
<span>E-mail</span>
<input
readOnly
type="text"
value="myemail@exemple.com"
id="mail"
/>
<button onClick={handleCopy}>Copy Email</button>
</Container>
</>
)
}