小編給大家分享一下react怎么寫點(diǎn)擊事件,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!
創(chuàng)新互聯(lián)專注于網(wǎng)站建設(shè)|成都網(wǎng)站維護(hù)|優(yōu)化|托管以及網(wǎng)絡(luò)推廣,積累了大量的網(wǎng)站設(shè)計(jì)與制作經(jīng)驗(yàn),為許多企業(yè)提供了網(wǎng)站定制設(shè)計(jì)服務(wù),案例作品覆蓋成都木托盤等行業(yè)。能根據(jù)企業(yè)所處的行業(yè)與銷售的產(chǎn)品,結(jié)合品牌形象的塑造,量身建設(shè)品質(zhì)網(wǎng)站。react寫點(diǎn)擊事件的方法:1、使用bind綁定,代碼為【this.clicked.bind(this,"hello world")】;2、使用箭頭函數(shù),代碼為【onClick={(event)=>this.clicked("hello】。
react寫點(diǎn)擊事件的方法:
1、bind綁定
第一個(gè)參數(shù)指向this
,第二個(gè)參數(shù)開始才是事件函數(shù)接收到的參數(shù),事件對(duì)象event
默認(rèn)是最后一個(gè)參數(shù)。
... clicked(param,event){ console.log(param) //hello world console.log(event.target.value) //按鈕 } render(){ return () } ...
這里的話綁定this可以統(tǒng)一寫,這樣代碼看起來整潔點(diǎn)。
... constructor(props){ super(props); this.state = {}; this.checkMenu = this.checkMenu.bind(this); } clicked = (param)=>{ return (event)=>{ console.log(event.target.value); // 按鈕 console.log(param); // hello } } render(){ return () } ...
2、箭頭函數(shù)
箭頭函數(shù)若要傳事件對(duì)象event的話,需要在箭頭函數(shù)中把event作為參數(shù)傳遞給觸發(fā)的事件。
... clicked(param,event){ console.log(param) //hello world console.log(event.target.value) //按鈕 } render(){ return () } ...
看完了這篇文章,相信你對(duì)react怎么寫點(diǎn)擊事件有了一定的了解,想了解更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!