I'm confused how do I pass an Id parameter to onClick function in javascript
(我很困惑如何将Id参数传递给javascript中的onClick函数)
checkboxClick=(e)=>{
if(e.target.checked===true){
console.log("checkbox clicked")
}
}
<input type="checkbox" key={id} onClick={this.checkboxClick}/>
this is working properly but i also want to pass an id parameter to the checkboxClick() method and print that Id if e.target.checked=true
(这工作正常,但我也想将id参数传递给checkboxClick()方法,并在e.target.checked = true时打印该ID。)
ask by Nawaz Moin yaakuza translate from so
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…