本篇文章主要介紹了react實作選取的li高亮的範例程式碼,頁面上有很多個li,要實現點擊到哪個就哪個高亮。內容還挺不錯的,現在分享給大家,也給大家做個參考。
雖然只是一個簡單的功能,還是記錄一下比較好。頁面上有很多個li,要實現點擊到哪個就哪個高亮。當年用jq的時候,也蠻簡單的,就是選中的元素給addClass,然後它的兄弟元素removeClass,再寫個active的樣式就搞定了。那現在用react要實現類似的操作,我想到的就是用一個currentIndex,透過判斷currentIndex在哪個元素實現切換。
先上效果圖:
#程式碼:
class Category extends React.Component { constructor(props) { super(props) this.state = { currentIndex: 0 } this.setCurrentIndex = this.setCurrentIndex.bind(this) } setCurrentIndex(event) { this.setState({ currentIndex: parseInt(event.currentTarget.getAttribute('index'), 10) }) } render() { let categoryArr = ['产品调整', '接口流量', '负载均衡', '第三方软件调整', '安全加固', '性能控制', '日志查询', '业务分析']; let itemList = []; for(let i = 0; i < categoryArr.length; i++) { itemList.push(<li key={i} className={this.state.currentIndex === i ? 'active' : ''} index={i} onClick={this.setCurrentIndex} >{categoryArr[i]}</li>); } return <ul className="category">{itemList}</ul> } }
css部分
.category { padding-left: 0; &:after { content: ''; display: block; clear: both; } li { float: left; width: 23%; height: 40px; margin-right: 10px; margin-bottom: 10px; border: 1px solid $border-color; list-style: none; color: $font-color; line-height: 40px; text-align: center; font-size: 14px; cursor: pointer; &.active { border-color: #079ACD; } }
是不是很簡單呢。就是在生成這些li的時候給元素添加一個index標誌位,然後點擊的時候,把這個index用event.currentTarget.getAttribute('index')取出來,然後去設定currentIndex的值,再寫一寫css的active樣式就搞定了。
以上就是本文的全部內容,希望對大家的學習有所幫助,更多相關內容請關注PHP中文網!
相關推薦:
#
以上是react實作點選選取的li高亮的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!