技术服务
发帖说明
数据导航
资源圈 - ZiYuanQ
»
首页
›
分类
›
站长资料
›
点击按钮复制div或者p标签内容
QQ
[代码]
点击按钮复制div或者p标签内容
[复制链接]
本站网友
发表于 2022-10-31 22:34
|
阅读模式
复制内容到剪切板
<style type="text/css">
.wrapper {position: relative;}
#input {position: absolute;top: 0;left: 0;opacity: 0;z-index: -10;}
</style>
<div class="wrapper">
<p id="text">内容</p>
<textarea id="input"></textarea>
<button onclick="copyText()">复制内容</button>
</div>
<script type="text/javascript">
function copyText() {
var text = document.getElementById("text").innerText;
var input = document.getElementById("input");
input.value = text; // 修改文本框的内容
input.select(); // 选中文本
document.execCommand("copy"); // 执行浏览器复制命令
alert("复制成功");
}
</script>
复制代码
回复
举报
返回列表
删帖注销
|
手机版
|
资源圈
GMT+8, 2025-1-18 13:05
Powered by
Discuz!
© 20022-2026 Comsenz Inc.
快速回复
返回顶部
返回列表