美文网首页
文本复制

文本复制

作者: Eternal丶星空 | 来源:发表于2018-06-22 15:57 被阅读14次
<!DOCTYPE html>
<html>
<body onclick="myFunction(event)">

<p>The executeCommand() method executes a specified command on selected text or section.</p>

<script>
document.designMode = "on";
let p=document.querySelector('p')
let y=document.querySelector('body')
function myFunction(event) {
let a=p.innerText
let b=document.createElement('input')
b.value=a
y.appendChild(b)
b.select()
document.execCommand("copy")
y.removeChild(b)

}
</script>

</body>
</html>

相关文章

网友评论

      本文标题:文本复制

      本文链接:https://www.haomeiwen.com/subject/zmwkyftx.html