本篇文章主要介紹了ReactJS實作表單的單選多選和反選的範例,非常具有實用價值,需要的朋友可以參考下
本文介紹了ReactJS實作表單的單選多選和反選的範例,分享給大家,希望對大家有幫助。
需求是對列表實現單選,反選和多選,全部清除的操作
...... this.state = { //初始化空数组,表示已经选择的 selectedStores:[], } ...... handleClick(e){ const newSelection = e.target.value;//拿到点击的具体一项 let newSelectionArray;//新建一个空数组 //判断点击项是否为选择状态,是的话清除选中状态 if(this.state.selectedStores.indexOf(newSelection) > -1) { newSelectionArray = this.state.selectedStores.filter((s:any) => s !== newSelection) } else { //不是的话就加入新选择数组 newSelectionArray = [...this.state.selectedStores, newSelection]; } this.setState({ // 新选择数组统一改为选中状态 selectedStores: newSelectionArray }); }
Array.prototype.indexOf()方法返回在數組中可以找到一個給定元素的第一個索引,如果不存在,則傳回-1。
語法:
arr.indexOf(searchElement) arr.indexOf(searchElement[, fromIndex = 0])
Array.prototype.filter()方法建立一個新陣列, 其包含透過所提供函數實現的測試的所有元素。
語法:
var new_array = arr.filter(callback[, thisArg])
以上是ReactJS中表單的單選多選與反選的實作方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!