是否可以通过单击选定的(在React中)取消选择<radio>?

时间:2019-05-16 11:17:42

标签: javascript html reactjs forms input

是否可以通过单击选定的广播来取消选择广播?

我知道这是默认的浏览器行为,但是我一直在研究此自定义功能。

Material-ui也无法做到这一点。

我知道Material-ui<input type="radio">包裹在<label />内,看起来像这样:

<label>
  <input type="radio" onChange={() => {}}>
</label>

如果我想实现此功能,则必须将onChange替换为onClick,但是浏览器会对我大喊大叫<input />应该有onChange事件处理程序。

那我该如何正确地将onChangeonClick事件处理程序挂钩?

我应该为onChange事件提供一个空函数吗?还是应该给preventDefault打电话?

1 个答案:

答案 0 :(得分:1)

签出this网址

import React, { Component } from 'react';
import { render } from 'react-dom';
import Hello from './Hello';
import './style.css';

class App extends Component {
  constructor() {
    super();
    this.state = {
      group1:[{"value":"1"},
      {"value":"2"},
      {"value":"3"}],
      group1Selected:null,
      group2:[{"value":"1"},
      {"value":"2"},
      {"value":"3"}],
       group2Selected:null,
    };
  }
  ChangeOption = (i,group) =>{
    var groupData = this.state[group] == i?null:i;        
    this.setState({[group]:groupData})
  }
  render() {
    const {group1,group2,group1Selected,group2Selected} = this.state;
    return (
      <div>
        {
          group1.map( (data,i)=><><input type="radio" id={`1-${i}`} onClick={e=>this.ChangeOption(i,"group1Selected")} checked={i==group1Selected?true:false} name="1" value={data.value}/><label for={`1-${i}`}>{data.value}</label></>)
        }
        <br/>
        {
          group2.map( (data,i)=><><input id={`2-${i}`} onClick={e=>this.ChangeOption(i,"group2Selected")} type="radio" checked={i==group2Selected?true:false} name="2" value={data.value}/><label for={`2-${i}`}>{data.value}</label></>)
        }
      </div>
    );
  }
}

render(<App />, document.getElementById('root'));