扫码关注官方订阅号
constructor(props) { super(props); this.switchClick = this.switchClick.bind(this); this.state = { headSwitch: true }; } switchClick () { //怎么区分执行switchClick()的是哪个节点 this.setState({ headSwitch: !this.state.headSwitch }); } render() { return ( 1 2 ) }
1 2
闭关修行中......
函数加一个参数 把1 和2 传进去
< a className={this.state.headSwitch ? 'act' : ''} onClick={this.switchClick.bind(this,1)}>1</ a>
onClick={(val) => this.switchClick(1)}
微信扫码关注PHP中文网服务号
QQ扫码加入技术交流群
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
PHP学习
技术支持
返回顶部
函数加一个参数 把1 和2 传进去
< a className={this.state.headSwitch ? 'act' : ''} onClick={this.switchClick.bind(this,1)}>1</ a>
onClick={(val) => this.switchClick(1)}