JavaScript中的window.getSelection


本文作者: jsweibo

本文链接: https://jsweibo.github.io/2020/04/21/JavaScript%E4%B8%AD%E7%9A%84window-getSelection/

摘要

本文主要讲述了:

  1. 作用
  2. 返回值类型
  3. document.getSelection

正文

作用

  • 获取用户选择的文本范围
  • 获取插入符号的所在位置

返回值类型

Selection实例对象

示例:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!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="app">
<h1>hello, jsweibo</h1>
<p>hi, jsweibo</p>
</div>
<script>
document.addEventListener('mouseup', function (event) {
console.log(getSelection());
console.log(getSelection().getRangeAt(0));
});
</script>
</body>
</html>

document.getSelection

注意:

1
2
3
4
5
// true
console.log(getSelection === window.getSelection);

// false
console.log(window.getSelection === document.getSelection);

参考资料

本文作者: jsweibo

本文链接: https://jsweibo.github.io/2020/04/21/JavaScript%E4%B8%AD%E7%9A%84window-getSelection/


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


支付宝
微信