把文本框的内容复制到剪切板
程序员文章站
2022-02-19 06:34:18
...
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>无标题页</title>
<script language="javascript" type="text/javascript">
function copycode() {
document.getElementById("logPanel").select();
var n=document.getElementById("logPanel").value;
alert(n);
window.clipboardData.setData('text',n);
}
</Script>
</head>
<body>
<form>
<input type="text" name="logPanel" value="sdfasdfasdfasfdsdf asdf "/>
</form>
<p> <a href="javascript:void(0)" onclick="copycode()";alert('复制成功,请粘贴到你需要的地方')">复制全文</a>
</p>
</body>
</html>
上一篇: Vue系列教程(十一)v-for指令的四种使用方式
下一篇: Vue系列教程(五)跑马灯效果案例