gpt4 book ai didi

javascript - 将文本从 Αce 编辑器复制到剪贴板

转载 作者:行者123 更新时间:2023-11-30 07:21:41 25 4
gpt4 key购买 nike

我正在尝试使用 here 中描述的纯 JS 方法将 Ace 编辑器框内的文本复制到我的本地剪贴板中.然而,当我点击我的复制按钮时,它会抛出一个错误:

"TypeError: copyTextarea.select is not a function"

并且文本不会复制到我的剪贴板。有没有办法以某种方式做到这一点(纯 JS 或 jQuery)?我的代码如下(简化但应该足够了):

$('#clipboard').on('click', function() {
var copyTextarea = document.querySelector('#result-box');
copyTextarea.select();
document.execCommand('copy');
});
<button id="clipboard">Copy</button>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="result-box" style="height: 100px; width: 100%; border-radius: 4px; border: 1px solid #DDD;">&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;/html&gt;</div>
<script src="https://cdn.rawgit.com/ajaxorg/ace-builds/master/src-noconflict/ace.js" type="text/javascript" charset="utf-8"></script>
<script>
var editor = ace.edit("result-box");
editor.getSession().setMode("ace/mode/html");
editor.setReadOnly(true);
editor.setShowPrintMargin(false);
editor.getSession().setUseWrapMode(true);
</script>

P.S.:还有一些关于 Ace 的 worker 和诸如此类的错误抛出,如果有人也知道如何解决这个问题,请在下面评论。提前致谢!

最佳答案

在编辑器上调用 focusselectAll,它适用于大多数现代浏览器

$('#clipboard').on('click', function() {
var sel = editor.selection.toJSON(); // save selection
editor.selectAll();
editor.focus();
document.execCommand('copy');
editor.selection.fromJSON(sel); // restore selection
});
<button id="clipboard">Copy</button>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="result-box" style="height: 100px; width: 100%; border-radius: 4px; border: 1px solid #DDD;">&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;/html&gt;</div>
<script src="https://cdn.rawgit.com/ajaxorg/ace-builds/master/src-noconflict/ace.js" type="text/javascript" charset="utf-8"></script>
<script>
var editor = ace.edit("result-box");
editor.getSession().setMode("ace/mode/html");
editor.setReadOnly(true);
editor.setShowPrintMargin(false);
editor.getSession().setUseWrapMode(true);
</script>

关于javascript - 将文本从 Αce 编辑器复制到剪贴板,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38847800/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com