首页 > Web开发 > 详细

js react 全选和反选

时间:2017-07-03 11:46:23      阅读:1439      评论:0      收藏:0      [点我收藏+]
onCheckAll = (data) => {
		var CheckBox  = document.getElementsByName(data);
		for(let i=0;i<CheckBox.length;i++){
            if(CheckBox[i].checked==true){
                     CheckBox[i].checked=false;
            } else{
                 CheckBox[i].checked=true
            }
        };
	}



const columnWBS = [
			{title:‘WBS节点名称‘,dataIndex:‘label‘},
			{title:‘权限‘,dataIndex:‘qx‘,
			render: (text, record, index) =>(
		      	<span >
			      	<Button size="small" onClick={this.onCheckAll.bind(this,record.key)} style={{marginRight:‘5px‘}}> 全选</Button>
			      	<span id="checkBoxWrap">
				      	<input type="checkbox"  name={record.key} style={{marginLeft:‘5px‘}}/> 添加
				      	<input type="checkbox"  name={record.key} style={{marginLeft:‘5px‘}}/> 删除
				      	<input type="checkbox"  name={record.key} style={{marginLeft:‘5px‘}}/> 编辑
				      	<input type="checkbox"  name={record.key} style={{marginLeft:‘5px‘}}/> 查看
				    </span>
		      	</span>
			
			)}]

  

js react 全选和反选

原文:http://www.cnblogs.com/jkr666666/p/7109583.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!