Languages
[Edit]
PL

React - jak pobrać referencję do elementu div

0 points
Created by:
telsa
502

W tym artykule chcielibyśmy pokazać, jak uzyskać referencję do elementu div w Reakcie.

W poniższym przykładzie tworzymy referencję za pomocą hooka React.useRef, następnie przypisujemy ją do właściwości ref elementu div.

Teraz, aby uzyskać dostęp do referencji elementu DOM, możemy użyć właściwości divRef.current, a dostęp do wartości jaka się tam aktualnie znajduje uzyskamy dzięki divRef.current.value.

// ONLINE-RUNNER:browser;

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

const divStyle = {
    height: '20px',
    background: 'yellow',
    border: 'solid',
    borderColor: 'red'
};

const App = () => {
  const divRef = React.useRef();
  return (
    <div>
      <div ref={divRef} style={divStyle}>
        <b>My div</b>
      </div>
      <br />
      <button onClick={() => console.log(divRef.current)}>Sprawdź referencję</button>
      <button onClick={() => console.log(divRef.current.innerText)}>Check innerText</button>
      <button onClick={() => console.log(divRef.current.innerHTML)}>Check innerHTML</button>
      <button onClick={() => console.log(divRef.current.outerHTML)}>Check outerHTML</button>
    </div>
  );
}

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

Alternative titles

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 pobrać referencję do elementu div
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