原文链接:https://bobbyhadz.com/blog/react-open-file-input-on-button-click[1]
作者:Borislav Hadzhiev[2]
正文从这开始~
总览
在React中,通过点击按钮,打开文件输入框:
- 在
button
元素上设置onClick
属性。 - 在文件输入框上设置
ref
属性。 - 当按钮被点击时,打开文件输入框。比如说,
inputRef.current.click()
。
import {useRef} from 'react';
const App = () => {
const inputRef = useRef(null);
const handleClick = () => {
//