有时我们不只是想复制文本框中内容,还需要复制表格,标签中的信息,且不想让用户看到,便可以采用此方法
引入JQuery
<script src=" https://code.jquery.com/jquery-1.8.3.min.js"></script>
HTML
<textarea id="copy" style="display:none;"></textarea>
<input id=" btn" type="button" value="复制"/>
JS
function copyText(str) {
$('#copy').text(str).show();
var ele = document.getElementById("copy");
ele.select();
document.execCommand('copy', false, null);
$('#copy').hide();
}
使用
$('#btn').click(function(){
var str = '要复制的文字';
copyText(str);
});
网友评论