欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

把文本框的内容复制到剪切板

程序员文章站 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>


相关标签: Java