复制文本到剪贴板及获取网站链接

复制文本到剪贴板及获取网站链接

一、点击按钮复制文本到剪贴板

#text {
	width: auto;height: 50px;
	padding: 10px;
	background: #00BFFF;
	font-size: 30px;
}  		
<div>
  <textarea id="text">MrFlySand.github.io</textarea>
  <button onclick="copyText()">复制文本</button>
</div>

文本最好在textarea标签中

function copyText() {
 	var t = document.getElementById("text");
 	t.select();
 	document.execCommand("copy");// 执行浏览器复制命令
 	alert("复制成功");
}

二、点击按钮复制当前网站链接到剪贴板

修改textarea元素的value(值),复制到剪贴板

.wrapper{
   position: relative;
}
.wrapper>textarea{
   position: absolute;
   left: 0;
}
.wrapper>#word{
   opacity: 0;/*元素的不透明度*/
}
button{
   margin: 10px;
}
<div class="wrapper">
   <textarea id="word"></textarea>
   <button onclick="copyHref()">复制链接</button>
</div>
function copyHref(){
 	var word = document.getElementById("word");
   word.value = document.location.href; // 获取当前网站链接
	word.select(); //选中文本
	document.execCommand("copy");
	alert("复制成功");
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

MrFlySand_飞沙

公众号【小知识酷】,搜索获取更

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值