Using Ref to change the style of an element in React
Using ref in React to change the style of an element:
-
Sets the attribute on the element
ref
. -
The element is accessed through the attribute on the ref
current
. -
Updates the style of an element,
ref.current.style.backgroundColor = 'green'
e.g.
import {useRef} from 'react';
const App = () => {
const ref = useRef();
const handleClick = () => {
ref.current.style.backgroundColor = 'salmon';
ref.current.style.color = 'white';
ref.current.style.padding = '2rem';
ref.current.style.width = '300px';
};
return (
<div>
<button onClick={handleClick}>Change styles</button>
<br />
<br />
<div ref={ref}>Some content here</div>
</div>
);
};
We use useRef
hooks to create an object that we can use to access DOM elements.
useRef()
The hook can be passed an initial value as an argument. The hook returns a mutable ref object whose.current
attributes are initialized to the passed argument.
请注意
, we have to access the current property of the ref object in order to access the div element on which we set the ref attribute.
When we pass a ref prop to an element, for example <div ref={myRef} />
, React sets the ref object’s .current property to the corresponding DOM node.
We can access the style property of an element to get an object of the element's style.
The style attribute can be used to set styles on a DOM element or to read an element's existing style.
请注意
, multi-word attribute names are camelCase, for example backgroundColor .
Use ref in React to toggle the style of an element:
- Set the ref attribute on the element.
- Checks if a specific style exists on an element.
- If the style is set, remove it. Otherwise set the style on the element.
import {useRef} from 'react';
const App = () => {
const ref = useRef();
const handleClick = () => {
if (ref.current.style.backgroundColor) {
ref.current.style.backgroundColor = '';
ref.current.style.color = '';
} else {
ref.current.style.backgroundColor = 'salmon';
ref.current.style.color = 'white';
}
};
return (
<div>
<button onClick={handleClick}>Change styles</button>
<br />
<br />
<div ref={ref}>Some content here</div>
</div>
);
};
export default App;
To toggle a style using a ref, we have to check if the style is set on the element.
If the style is set, we remove it by setting its property to an empty string. Otherwise, we set the style property to its specific value.
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
Determining the referer in PHP
Publish Date:2025/04/13 Views:133 Category:PHP
-
$_SERVER['HTTP_REFERER'] Provides us with a referrer URL to determine the user request on the server. However, this is not a best practice because the referrer can be HTTP compromised through . $_SESSION[] Determine the referrer in PHP usin
Implementing refresh permissions in MySQL
Publish Date:2025/04/10 Views:118 Category:MySQL
-
This tutorial explains the refresh permissions operation and its implementation with examples. Implementing refresh permissions in MySQL MySQL implements user management through grant tables to ensure security and access control in the serv
How to fix Git error Error: src refspec master does not match any
Publish Date:2025/04/05 Views:124 Category:Git
-
When using Git, we may encounter the error "src refspace master does not match any". Here's what the error means and how to fix it. What does src refspec master does not match any Mean in Git mean? We may encounter this error when we try to
Fatal: Refusing to Merge Unrelated Histories error in Git
Publish Date:2025/03/29 Views:124 Category:Git
-
This article outlines the steps required to resolve the fatal: refusing to merge unrelated histories error in Git. We usually encounter such errors when trying to merge two unrelated Git projects into one branch. It pops up when the receivi
Git refresh remote branch
Publish Date:2025/03/28 Views:94 Category:Git
-
Git is considered to be the most accurate and the most used software by developers in their projects and can be operated by multiple developers simultaneously. It provides many unique and quirky features to the developers which are very dif
How to avoid cross-origin (CORS) issues in React/Next.js
Publish Date:2025/03/17 Views:170 Category:NETWORK
-
In this article, we will introduce how to avoid cross-origin (CORS) issues in React/Next.js. Cross-origin resource sharing (CORS) is a protocol that defines how web requests should be handled when crossing different URLs.
React Tutorial - Transferring Props
Publish Date:2025/03/16 Views:188 Category:React
-
React transfers Props. Props are generated when components are encapsulated. Components expose some properties (Props) to the outside world to complete some functions.
React Tutorial: Props Anti-Pattern
Publish Date:2025/03/16 Views:187 Category:React
-
React's Props anti-pattern, using Props to generate state in getInitialState is an anti-pattern - Anti-Pattern.
React Tutorial - Props Validation
Publish Date:2025/03/16 Views:102 Category:React
-
Props validation is a very useful way to use components correctly. It can avoid many bugs and problems as your application becomes more and more complex. In addition, it can make your program more readable.