当前位置: 移动技术网 > IT编程>开发语言>JavaScript > ReactJS实现表单的单选多选和反选的示例

ReactJS实现表单的单选多选和反选的示例

2017年12月12日  | 移动技术网IT编程  | 我要评论

本文介绍了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])

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持移动技术网。

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网