Home  >  Article  >  Web Front-end  >  react.js gives the identifier ref and gets the content

react.js gives the identifier ref and gets the content

一个新手
一个新手Original
2017-10-06 10:39:582006browse


import React,{Component} from 'react'import ReactDOM from 'react-dom'class App extends Component{    //给一个初始化状态    constructor(){
        super();        
        this.state={
            result:0
        }
    }
    handChange=()=>{        //获取input a的类容,这个a就是我们给的标识ref="a"
        let a=this.refs.a.value||0;
        let b=this.refs.b.value||0;        //改变状态,更新视图
        this.setState({result:parseFloat(a)+parseFloat(b)})
    }
    render(){        
    return (            <p>
                <input type="text" ref="a" onChange={this.handChange}/>
                +
                <input type="text" ref="b" onChange={this.handChange}/>
                <p>{this.state.result}</p>
            </p>        )
    }
}
ReactDOM.render(<App/>,document.querySelector("#root"))

The above is the detailed content of react.js gives the identifier ref and gets the content. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn