前端复制带上版权信息
当用户复制内容时,自动添加版权信息。
HTML内容
<body><h1 inputmode="text">复制我</h1>
</body>
Js内容
document.addEventListener("copy", (event) => {event.preventDefault(); // 阻止默认事件const copiedText = window.getSelection().toString(); // 选择复制的内容const copyrightText = "版权信息"; // 设置版权信息const copiedContent = `${copiedText} \n ${copyrightText}`; // 拼接复制内容+版权信息// 将复制内容放入event.clipboardData.setData("text/plain", copiedContent);
});