码迷,mamicode.com
首页 > 其他好文 > 详细

react属性三ref

时间:2020-03-11 23:58:27      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:doc   his   图片   ret   handle   info   end   color   rip   

ref属性:作为接口,向外暴露DOM。非受控组件。(该属性不建议使用)

技术图片

 

 

 1 <script type="text/babel">
 2     class MyComponent extends React.Component{
 3       handleClick= ()=>{
 4         console.log(this.uu.value)
 5       }
 6       render(){
 7         return (
 8           <div>
 9             <input type="text" ref={(ee)=>{this.uu = ee}}/> 
10             <button onClick={this.handleClick}>点击获取输入标签的值</button>
11           </div>
12         )
13       }
14     }
15     ReactDOM.render(<MyComponent />,document.getElementById("root"));
16 </script>

 

react属性三ref

标签:doc   his   图片   ret   handle   info   end   color   rip   

原文地址:https://www.cnblogs.com/minyDong/p/12466314.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!