标签:col change tip src target 标签 input attribute attr
1、给标签对象添加自定义属性 flag="tip"
<Input flag="tip" onChange={event => this.handleChange(event)} />
2、getAttribute 获取自定义属性
console.log(event.target)
console.log(event.target.getAttribute(‘flag‘)
3、这样就可以将 tip 传过去啦
标签:col change tip src target 标签 input attribute attr
原文地址:https://www.cnblogs.com/fengwenya/p/12149783.html