“React Focus” Kod odpowiedzi

React Focus

const FocusDemo = () => {

    const [inputRef, setInputFocus] = useFocus()

    return (
        <> 
            <button onClick={setInputFocus} >
               FOCUS
            </button>
            <input ref={inputRef} />
        </>
    )

}

const useFocus = () => {
    const htmlElRef = useRef(null)
    const setFocus = () => {htmlElRef.current &&  htmlElRef.current.focus()}

    return [ htmlElRef, setFocus ] 
}
Graceful Grasshopper

React Focus

<input type="text" autoFocus />
Graceful Grasshopper

Odpowiedzi podobne do “React Focus”

Pytania podobne do “React Focus”

Więcej pokrewnych odpowiedzi na “React Focus” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu