function copyToClipboard() { var textBox = document.getElementById("myvalue"); textBox.select(); document.execCommand("copy"); } <input ...
確定! 回上一頁