我正在尝试使用execcommand("paste")
chome 扩展将剪贴板数据粘贴到 textarea 中,但我似乎无法让它工作。权限设置。我试图focus()
在 textarea 上进行设置,但document.execCommand("paste")
什么也没做,也没有出现错误。execcommand("paste")
从后台页面调用也没有任何作用。
<form>
<textarea id="ta"></textarea>
</form>
<script type="text/javascript">
document.findElemetById("ta").focus();
document.execCommand("paste");
</script>