字符串形式的ref
Tutorial: React基础
Category: React
Published: 2026-04-07 13:58:26
Views: 20
Likes: 0
Comments: 0
18_字符串形式的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.refs;
alert(input1.value);
};
showData2 = () => {
const { input2 } = this.refs;
alert(input2.value);
};
render() {
return (
<div>
<input ref="input1" type="text" placeholder="点击按钮提示数据" />
<button onClick={this.showData}>点我提示左侧的数据</button>
<input
ref="input2"
onBlur={this.showData2}
type="text"
placeholder="失去焦点提示数据"
/>
</div>
);
}
}
ReactDOM.render(<Demo a="1" b="2" />, document.getElementById("test"));
</script>
</body>
</html>