<script>
function copyUrl2() {
var target = document.getElementById("anyInput");
target.select(); // 选择文本
document.execCommand("Copy"); // 执行浏览器复制命令
alert("已复制好,可贴粘。");
}
</script>
<button type="button" onclick ="copyUrl2()" value="点击复制代码" id="fz">复制</button>
不用引用jq 改下id 就可以复制文本内容