我有一个文本框&按钮看起来像这样:
<div class="col-xs-11" style="padding:20px 0 ">
<input type="text" class="form-control txtKeywords" id="txtKeyw" style="margin-bottom:10px; height:45px;" maxlength="80" placeholder="Click on keywords to combine your title">
<button type="submit" class="btn btn-space btn-success btn-shade4 btn-lg copyToClipboard">
<i class="icon icon-left s7-mouse"></i> Copy to Clipboard
/button>
当用户点击按钮副本到剪贴板时,我想将文本框的内容复制到剪贴板中,如下所示:
$(document).on("click", ".copyToClipboard", function () {
copyToClipboard("txtKeyw");
successMessage();
});
copyToClipboard
函数的定义是:
function copyToClipboard(element) {
var $temp = $("<input>");
$("body").append($temp);
$temp.val($(element).text()).select();
document.execCommand("copy");
$temp.remove();
}
但是当我这样做时,没有任何反应 - 没有值从文本框复制到剪贴板......我在这里做错了什么?
更多信息:
successMessage()
被调用并显示在浏览器中。#
无法解决问题。答案 0 :(得分:8)
第1步:像这样更改copyToClipboard(element)
:
function copyToClipboard(text) {
var textArea = document.createElement( "textarea" );
textArea.value = text;
document.body.appendChild( textArea );
textArea.select();
try {
var successful = document.execCommand( 'copy' );
var msg = successful ? 'successful' : 'unsuccessful';
console.log('Copying text command was ' + msg);
} catch (err) {
console.log('Oops, unable to copy');
}
document.body.removeChild( textArea );
}
第2步:为您的按钮添加一个ID,然后像这样添加一个事件监听器:
$( '#btnCopyToClipboard' ).click( function()
{
var clipboardText = "";
clipboardText = $( '#txtKeyw' ).val();
copyTextToClipboard( clipboardText );
alert( "Copied to Clipboard" );
});
答案 1 :(得分:2)
试试这个..这是正确的方法。
第1步:
function copyToClipboard(text) {
var textArea = document.createElement( "textarea" );
textArea.value = text;
document.body.appendChild( textArea );
textArea.select();
try {
var successful = document.execCommand( 'copy' );
var msg = successful ? 'successful' : 'unsuccessful';
console.log('Copying text command was ' + msg);
} catch (err) {
console.log('Oops, unable to copy');
}
document.body.removeChild( textArea );
}
第2步:
$( '#btnCopyToClipboard' ).click( function()
{
var clipboardText = "";
clipboardText = $( '#txtKeyw' ).val();
copyToClipboard( clipboardText );
alert( "Copied to Clipboard" );
});
答案 2 :(得分:1)
copyToClipboard()
获取元素作为参数。
txtKeyw
是id,您必须在其前加#
。