码迷,mamicode.com
首页 > Web开发 > 详细

js react 全选和反选

时间:2017-07-03 12:17:40      阅读:243      评论:0      收藏:0      [点我收藏+]

标签:log   查看   checkbox   margin   click   text   span   index   button   

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 全选和反选

标签:log   查看   checkbox   margin   click   text   span   index   button   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!