Languages
[Edit]
PL

React - jak ustawić kurosr na elemencie input po renderowaniu

0 points
Created by:
Vanessa-Drake
718

W tym artykule chcielibyśmy pokazać, jak w Reakcie ustawić kursor na elemencie input bezpośrednio po wyrenderowaniu komponentu.

W poniższym przykładzie używamy dwóch hooków:

  • useRef który przechowuje referencję do elementu input,
  • useEffect  - metoda .focus() jest wywoływana, gdy komponent App zostanie wyrenderowany.

Uruchamialny przykład:

// ONLINE-RUNNER:browser;

// Uwaga: Odkomentuj poniższe linijki podczas pracy z kompilatorem JSX:
// import React from 'react';

const App = () => {
  const inputRef = React.useRef();
  React.useEffect(() => {
    if (inputRef.current) {
    	inputRef.current.focus();
    }
  }, []);
  return (
    <div>
      <label>Search: </label>
      <input ref={inputRef} />
    </div>
  );
}

const root = document.querySelector('#root');
ReactDOM.render(<App />, root );

Alternative titles

  1. React - ustawienie kursora na polu input po renderingu
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

ReactJS (PL)

React - jak ustawić kurosr na elemencie input po renderowaniu
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join