JavaScript複製到剪切板

code: const copyText = (text) => { var input = document.createElement('textarea'); document.body.appendChild(input); input.value = text; // 修改文本框的內容 input.select(); // 選中文本 documen
相關文章
相關標籤/搜索