js复制内容到剪贴板格式化粘贴到excel中
Posted zhaoxiangshang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js复制内容到剪贴板格式化粘贴到excel中相关的知识,希望对你有一定的参考价值。
<input id="Button1" type="button" value="导出EXCEL" onclick="copyToClipboard(‘ta‘)">
<div style="width: 760px;float:left;" id="ta">
<table border="0" style="" cellpadding="3" cellspacing="1" width="760">
</table>
</div>
<script src="https://cdn.bootcss.com/jquery/1.12.3/jquery.min.js"></script>
<script>
function copyToClipboard(elementId) {
var aux = document.createElement("input");
var $a = $(‘#‘+elementId).clone();
$a.find(‘input‘).each(function(){
var x = $(this).val();
$(this).parent().html(x);
});
aux.setAttribute("value", $a.html());
document.body.appendChild(aux);
aux.select();
document.execCommand("copy");
document.body.removeChild(aux);
alert("复制成功");
}
</script>
以上是关于js复制内容到剪贴板格式化粘贴到excel中的主要内容,如果未能解决你的问题,请参考以下文章
使用JSF(Primefaces)将数据从Excel复制并粘贴到Datatable