标签: javascript
下一个示例在台式机上运行良好
function copy() { var copyText = document.getElementById("targetId"); copyText.select(); document.execCommand("copy"); }
但是它在ios Safari下不起作用。
已更新: 我输入的代码
<input type="text" value="Hello World" id="myInput">