我想在HTML5中使用复制到剪贴板功能,但不使用闪存。可能吗?怎么样?
我尝试使用JavaScript实现copy-to-clipboad函数,但它不起作用:
function Copytoclipboard() {
var body = document.body,
range, sel;
if (document.createRange && window.getSelection) {
range = document.createRange();
sel = window.getSelection();
sel.removeAllRanges();
try {
range.selectNodeContents(el);
sel.addRange(range);
document.execCommand('Copy');
} catch (e) {
range.selectNode(el);
sel.addRange(range);
document.execCommand('Copy');
}
} else if (body.createTextRange) {
range = body.createTextRange();
range.moveToElementText(el);
range.select();
range.execCommand('Copy');
}
}
答案 0 :(得分:26)
您可以使用HTML5 clipboard api
http://www.htmlgoodies.com/html5/other/working-with-clipboard-apis-in-html5-web-apps.html#fbid=eh9tM7GHJWF
但请注意,截至目前,并非所有浏览器都完全支持它:http://caniuse.com/#feat=clipboard
答案 1 :(得分:18)
更新:此解决方案现在适用于所有主流浏览器的当前版本!
我认为还没有针对此的非Flash,跨浏览器解决方案。这是一个至少可以在Chrome,Firefox和Edge的最新版本中运行的解决方案:
function copyText(text){
function selectElementText(element) {
if (document.selection) {
var range = document.body.createTextRange();
range.moveToElementText(element);
range.select();
} else if (window.getSelection) {
var range = document.createRange();
range.selectNode(element);
window.getSelection().removeAllRanges();
window.getSelection().addRange(range);
}
}
var element = document.createElement('DIV');
element.textContent = text;
document.body.appendChild(element);
selectElementText(element);
document.execCommand('copy');
element.remove();
}
var txt = document.getElementById('txt');
var btn = document.getElementById('btn');
btn.addEventListener('click', function(){
copyText(txt.value);
})

<input id="txt" />
<button id="btn">Copy To Clipboard</button>
&#13;
注意:尝试使用此解决方案复制空字符串或仅为空格的字符串将不起作用。
答案 2 :(得分:17)
它不起作用,因为它需要用户交互,例如点击。否则,document.execCommand
将无效。您也可以查看clipboard.js,这是一个非常简单的库,可以将文本复制到不需要Flash的剪贴板。
答案 3 :(得分:8)
将文本插入剪贴板的功能:
function copyStringToClipboard (string) {
function handler (event){
event.clipboardData.setData('text/plain', string);
event.preventDefault();
document.removeEventListener('copy', handler, true);
}
document.addEventListener('copy', handler, true);
document.execCommand('copy');
}
答案 4 :(得分:4)
如果您不关心在复制之前选择文本字段的内容,这里的双线解决方案至少可以在Chrome 56和Edge中使用,但我敢打赌它可以在其他浏览器中使用好。
function clickListener() {
document.getElementById('password').select();
document.execCommand('copy');
}
document.getElementById('copy_btn').addEventListener('click', clickListener);
&#13;
<input id=password value="test">
<button id=copy_btn>Copy</button>
&#13;
答案 5 :(得分:0)
您可以使用Clipboard.js将复制添加到剪贴板。没有flash的这项工作看看我使用的代码:
//for copy to clickboard
var els = document.querySelectorAll('pre');
for (var i=0; i < els.length; i++) {
//for CLIPBOARD
var atr = els[i].innerHTML;
els[i].setAttribute("data-clipboard-text", atr);
//For SELECT
var ids = "elementID"+[i]
els[i].setAttribute("id", ids);
els[i].setAttribute("onclick","selectText(this.id)");
}
var btns = document.querySelectorAll('pre');
var clipboard = new ClipboardJS(btns);
clipboard.on('success', function(e) {
console.log(e);
});
clipboard.on('error', function(e) {
console.log(e);
});
//for select
function selectText(id){
var sel, range;
var el = document.getElementById(id); //get element id
if (window.getSelection && document.createRange) { //Browser compatibility
sel = window.getSelection();
if(sel.toString() == ''){ //no text selection
window.setTimeout(function(){
range = document.createRange(); //range object
range.selectNodeContents(el); //sets Range
sel.removeAllRanges(); //remove all ranges from selection
sel.addRange(range);//add Range to a Selection.
},1);
}
}else if (document.selection) { //older ie
sel = document.selection.createRange();
if(sel.text == ''){ //no text selection
range = document.body.createTextRange();//Creates TextRange object
range.moveToElementText(el);//sets Range
range.select(); //make selection.
}
}
}
&#13;
<pre>I Have To Copy it<pre>
<script src="https://cdn.jsdelivr.net/npm/clipboard@2/dist/clipboard.min.js"></script>
&#13;