JavaScript中的HTMLElement.prototype.oncut


本文作者: jsweibo

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

摘要

本文主要讲述了:

  1. 作用

正文

作用

  1. 监听剪切事件
  2. 修改粘贴行为

注意:

  1. 若用户试图在不可编辑的元素上剪切,cut事件仍会触发,只是事件对象的数据为空
  2. 出于安全考虑,<input type="password" />是不可以剪切的。在 Chrome 中,甚至连cut事件都不会触发
  3. 若要修改粘贴行为,必须使用event.preventDefault()阻止事件的默认行为,且需要自行操作 DOM(出于语义化考虑,开发者应该在cut事件中把源数据移除)

示例:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!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('cut', function (event) {
console.log(event);
});
</script>
</body>
</html>

示例:在 Chrome 中,甚至连cut事件都不会触发

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!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>
<input type="password" id="foo" />
<script>
document.querySelector('#foo').addEventListener('cut', function (event) {
console.log(event);
});
</script>
</body>
</html>

参考资料

本文作者: jsweibo

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


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


支付宝
微信