参考 : https://www.iteye.com/blog/zzc1684-2115935
注 : 若用 style="display:none;" 隐藏文本框会无法复制
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<textarea id="biao1" style="opacity:0.0;cursor: default;width:1px;height:1px;resize:none" readonly="readonly">用户定义的代码区域</textarea>
<input type="button" onClick="copyUrl2()" value="点击复制代码" />
</body>
<script src="js/jQuery.js"></script>
<script type="text/javascript">
function copyUrl2() {
var Url2 = document.getElementById("biao1");
Url2.select(); // 选择对象
document.execCommand("Copy"); // 执行浏览器复制命令
alert("已复制好,可贴粘。");
}
</script>
</html>
说明 :
resize:none 禁止拉伸
END。