JavaScript中的document.activeElement


本文作者: jsweibo

本文链接: https://jsweibo.github.io/2020/06/12/JavaScript%E4%B8%AD%E7%9A%84document-activeElement/

摘要

本文主要讲述了:

  1. 作用

正文

作用

  • 若页面中的表单控件获得焦点,指向该表单控件
  • 若页面中的其他元素获得焦点,指向<body>null

注意:

  1. document.activeElement可以被focus()select()改变
  2. 获得焦点不一定存在选区
  3. 存在选区一定获得了焦点

示例:

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>
<textarea placeholder="placeholder">test</textarea>
<script>
console.log(document.activeElement);
document.querySelector('textarea').focus();
console.log(document.activeElement);
</script>
</body>
</html>

示例:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!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>
<textarea placeholder="placeholder">test</textarea>
<script>
console.log(document.activeElement);
document.querySelector('textarea').select();
console.log(document.activeElement);
console.log(getSelection().toString());
</script>
</body>
</html>

参考资料

本文作者: jsweibo

本文链接: https://jsweibo.github.io/2020/06/12/JavaScript%E4%B8%AD%E7%9A%84document-activeElement/


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


支付宝
微信