我刚刚在页面上添加了这样的js代码:
<script type="text/javascript">
function copiaSource()
{
try
{
var cosa=Date.now().toString();
const input = document.getElementById("tarea2d");
input.value = cosa;
input.focus();
input.select();
const result = document.execCommand('copy');
}
catch(e)
{
document.write(e.message);
}
}
</script>
<textarea id='tarea2d'></textarea>
<a href="javascript:copiaSource()">copy</a>
此页面在Java浏览器(内部装有Web浏览器组件的程序)中打开。 好吧,在我启动该应用程序的几乎所有PC上,该副本都可以工作。在1台PC(Windows 7)上,document.execCopy返回false,并且没有任何内容被复制到剪贴板。我为此感到疯狂。 你可以帮帮我吗? 谢谢