js 终端命令

1
document.execCommand("命令名");

例如:

案例:点击复制文本

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<title>测试</title>
</head>

<body>
<div id="contents" onClick="copit()">66666666666666</div>

<script type="text/javascript">
function copit() {
var contents = document.querySelector("#contents").innerText;
let storage = document.createElement('input');
storage.value = contents;
document.body.appendChild(storage);
storage.select(); // 选择对象
document.execCommand("Copy"); // 执行浏览器复制命令
storage.className = 'storage';
storage.style.display = 'none';
alert('复制成功');
}

</script>

</body>

</html>

js  命令


js 终端命令
https://github.com/chergn/chergn.github.io/3805b2989070/
作者
全易
发布于
2024年3月28日
许可协议