赞
踩
因为react版本会提升原因,获取值得方法不一样,最好的办法是自己在控制台打印一下就可以很直观得看出值
- import React, { useRef } from "react";
- import ReactDOM from "react-dom";
-
- function SearchResults() {
- const inputVal = useRef(null)
- const inputValOpt=()=>{
- console.log(inputVal.current.value)
- }
-
- return (
- <>
-
- <input type='text' ref={inputVal }/>
- <button onClick={inputValOpt}>点击</button>
- </>
- );
- }
-
- const rootElement = document.getElementById("root");
- ReactDOM.render(<SearchResults />, rootElement);

Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。