“Bereaksi fokus” Kode Jawaban

Bereaksi fokus

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

Bereaksi fokus

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

Jawaban yang mirip dengan “Bereaksi fokus”

Pertanyaan yang mirip dengan “Bereaksi fokus”

Lebih banyak jawaban terkait untuk “Bereaksi fokus” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya