web页面上单击按钮实现复制当前页面的url到剪贴板
程序员文章站
2022-05-14 22:21:11
...
超级简单,直接上代码
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<title>首页</title>
<script>
function copyUrl() {
alert(this.location.href);
window.clipboardData.setData("Text",this.location.href);
alert("复制成功!");
}
</script>
</head>
<body>
<div id="main">
<button onclick="copyUrl()" >点击复制本页面链接</button>
</div>
</body>
</html>
上一篇: css怎么让页面上的内容不能被选中?
下一篇: 系统的复制粘贴