📌  相关文章
📜  将文本复制到剪贴板 reactjs - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:29.110000             🧑  作者: Mango

代码示例3
import React, { useRef, useState } from 'react';

export default function CopyExample() {

  const [copySuccess, setCopySuccess] = useState('');
  const textAreaRef = useRef(null);

  function copyToClipboard(e) {
    textAreaRef.current.select();
    document.execCommand('copy');
    // This is just personal preference.
    // I prefer to not show the the whole text area selected.
    e.target.focus();
    setCopySuccess('Copied!');
  };

  return (
    
{ /* Logical shortcut for only displaying the button if the copy command exists */ document.queryCommandSupported('copy') &&
{copySuccess}
}