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

javascript实现复制内容到剪切板

程序员文章站 2022-05-15 23:53:26
...

javascript实现复制内容到剪切板

html
<input value="copy的内容" id="txtContent" />
<input type="button" onClick="copyTxt()" value="复制" />
js
<script type="text/javascript">
function copyTxt(){
	document.getElementById("txtContent").select(); // 选择对象
	document.execCommand("Copy"); // 执行浏览器复制命令
}
</script>