Check if an element has focus in React
To check if an element has focus in React:
- Set the ref attribute on the element.
- After the element is rendered, check if the element is the active element in the document.
- If yes, the element is focused.
import {useEffect, useRef} from 'react';
export default function App() {
const ref = useRef(null);
// 👇️ check if an element is focused on mount
useEffect(() => {
if (document.activeElement === ref.current) {
console.log('element has focus');
} else {
console.log('element does NOT have focus');
}
}, []);
return (
<div>
<input ref={ref} autoFocus type="text" id="message" name="message" />
</div>
);
}
The code example shows how to check whether an element has focus.
const ref = useRef(null);
The useRef() hook can be passed an initial value as an argument. The hook returns a mutable ref object whose .current property is initialized to the passed argument.
请注意
, we have to access the current property of the ref object in order to access the input element on which we set the ref attribute.
useEffect(() => {
if (document.activeElement === ref.current) {
console.log('element has focus');
} else {
console.log('element does NOT have focus');
}
}, []);
When we pass a ref prop to an element, for example <input ref={myRef} />
, React sets the .current property of the ref object to the corresponding DOM node.
We pass an empty dependencies
array to useEffect
the hook, so it will only run when the component mounts.
We use useEffect
the hook because we want to make sure that the ref has been set on the element and that the element has been rendered.
document.activeElement
Property returns the element that currently has focus.
If there is no focused element, the document.activeElement property will return the body element in most browsers, but it may also return null, depending on the browser implementation.
We simply check document.activeElement
if is equal to ref.current
and if the expression returns true, then the element has focus.
Use onFocus and onBlur to check if an element is focused
This is a three-step process:
-
onFocus
Set the and attributes on the elementonBlur
. -
Each
onFocus
time the event runs,isFocused
set the state variable to true . -
Each
onBlur
time the event runs,isFocused
set the state variable to false .
import {useEffect, useRef, useState} from 'react';
export default function App() {
const [isFocused, setIsFocused] = useState(false);
const ref = useRef(null);
useEffect(() => {
console.log('isFocused: ', isFocused);
}, [isFocused]);
return (
<div>
<input
ref={ref}
type="text"
id="message"
name="message"
onFocus={() => setIsFocused(true)}
onBlur={() => setIsFocused(false)}
/>
<h2>jiyik.com</h2>
</div>
);
}
onFocus
We set the and properties on the element onBlur
to check if it has focus.
Every time the element gets focus, onFocus
the event runs and we isFocused
set the state variable to true .
When the element loses focus, onBlur
the event runs and we set the state variable to false .
If we need to track isFocused
changes to state variables, we can use useEffect
the hook.
For reprinting, please send an email to 1244347461@qq.com for approval. After obtaining the author's consent, kindly include the source as a link.
Related Articles
Using onChange event in React
Publish Date:2025/03/03 Views:148 Category:React
-
onChange 是 React 中最常见的输入事件之一。本文将帮助你了解它的工作原理。
Checkbox onChange in React
Publish Date:2025/03/03 Views:73 Category:React
-
本教程演示了如何从 React 中 onChange 事件的复选框发送值。
onDoubleClick in React
Publish Date:2025/03/03 Views:128 Category:React
-
本教程演示了如何在 React 中使用 onDoubleClick。
Show element or text on hover in React
Publish Date:2025/03/03 Views:186 Category:React
-
在 React 中悬停时显示元素或文本: 在元素上设置 onMouseOver 和 onMouseOut 属性。 跟踪用户是否将鼠标悬停在状态变量中的元素上。 根据状态变量有条件地渲染另一个元素。 import {useStat
Scroll to top of page in React.js
Publish Date:2025/03/03 Views:182 Category:React
-
在 React 中使用 window.scrollTo() 方法滚动到页面顶部,例如 window.scrollTo(0, 0) 。 window 对象上的 scrollTo 方法滚动到文档中的一组特定坐标。 import {useEffect} from react ; export default function App (
Applying global CSS styles in React applications
Publish Date:2025/03/03 Views:145 Category:React
-
要在 React 应用程序中应用全局 CSS 样式,请将 CSS 写入扩展名为 .css 的文件中,并将其导入 index.js 文件中。 全局 CSS 应该在 index.js 中导入,以确保它被加载到你的 React 应用程序的所有
Passing events and parameters to onClick in React
Publish Date:2025/03/03 Views:63 Category:React
-
在 React 中传递事件和参数 onClick: 将内联函数传递给元素的 onClick 属性。 该函数应获取事件对象并调用 handleClick 。 将事件和参数传递给 handleClick 。 const App = () = { const handleClick = ( e
How to remove event listeners in React
Publish Date:2025/03/03 Views:194 Category:React
-
在 React 中删除事件监听器: 在 useEffect 挂钩中添加事件侦听器。 从 useEffect 挂钩返回一个函数。 当组件卸载时,使用 removeEventListener 方法移除事件监听器。 import {useRef, useEffect} from r
Using conditions to jump out of a map in map() in React
Publish Date:2025/03/03 Views:147 Category:React
-
React 中在 map() 中使用条件: 在数组上调用 map() 方法。 使用 if 条件,如果条件满足则显式返回。 否则返回不同的值或返回 null 以不呈现任何内容。 export default function App () { const arr =