React
Posted finnlee
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了React相关的知识,希望对你有一定的参考价值。
事件对象:
import React,{Component} from ‘react‘ class Index extends Component{ constructor(props){ super(props) this.state = { msg:‘张学友‘ } } getMsg=(event)=>{ alert(this.state.msg);
event.target.value;//获取值
console.log(event.target); //获取当前Dom节点 event.target.style.background = ‘red‘ ; //改变当前Dom的背景色
console.log(event.target.getAttribute(‘aid‘)); //获取当前Dom属性 } setMsg=()=>{ this.setState({ msg:‘刘德华‘ }) } render(){ return( <div> {this.state.msg} <button aid=‘1111‘ onClick={this.getMsg}>点击获值</button> <br /> <button onClick={this.setMsg}>改变值</button> </div> ) } } export default Index
以上是关于React的主要内容,如果未能解决你的问题,请参考以下文章
[React Testing] Use Generated Data in Tests with tests-data-bot to Improve Test Maintainability(代码片段
[react] Module not found: Can't resolve 'schedule' in 'C:Usersadcaldvmtn7myapp (代码片段