JavaScript中的HTMLElement.prototype.onpaste


本文作者: jsweibo

本文链接: https://jsweibo.github.io/2020/03/31/JavaScript%E4%B8%AD%E7%9A%84HTMLElement-prototype-onpaste/

摘要

本文主要讲述了:

  1. 作用

正文

作用

  1. 监听粘贴事件
  2. 读取剪贴板
  3. 修改粘贴行为

注意:

  1. 若用户试图在不可编辑的元素上粘贴,paste事件仍会触发
  2. 若要修改粘贴行为,必须使用event.preventDefault()阻止事件的默认行为,且需要自行操作 DOM

示例:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<div id="foo">hello, jsweibo</div>
<script>
document
.querySelector('#foo')
.addEventListener('paste', function (event) {
console.log(event);
});
</script>
</body>
</html>

示例:读取剪贴板

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<div id="foo">hello, jsweibo</div>
<script>
document
.querySelector('#foo')
.addEventListener('paste', function (event) {
console.log(event);
console.log(event.clipboardData.getData('text/plain'));
});
</script>
</body>
</html>

参考资料

本文作者: jsweibo

本文链接: https://jsweibo.github.io/2020/03/31/JavaScript%E4%B8%AD%E7%9A%84HTMLElement-prototype-onpaste/


本文对你有帮助?请支持我


支付宝
微信