回调函数形式的ref
Tutorial: React基础
Category: React
Published: 2026-04-07 13:58:26
Views: 20
Likes: 0
Comments: 0
19_回调函数形式的ref
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>1_字符串形式的ref</title>
</head>
<body>
<div id="test"></div>
<script type="text/javascript" src="./js/react.development.js"></script>
<script
type="text/javascript"
src="./js/react-dom.development.js"
></script>
<script type="text/javascript" src="./js/babel.min.js"></script>
<script type="text/babel">
class Demo extends React.Component {
showData = () => {
const { input1 } = this;
alert(input1.value);
};
showData2 = () => {
const { input2 } = this;
alert(input2.value);
};
render() {
return (
<div>
<input
ref={(c) => (this.input1 = c)}
type="text"
placeholder="点击按钮提示数据"
/>
<button onClick={this.showData}>点我提示左侧的数据</button>
<input
onBlur={this.showData2}
ref={(c) => (this.input2 = c)}
type="text"
placeholder="失去焦点提示数据"
/>
</div>
);
}
}
ReactDOM.render(<Demo a="1" b="2" />, document.getElementById("test"));
</script>
</body>
</html>