You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design/components/radio/demo/disable.md

313 B

不可用

  • order: 1

Radio 不可用。


var Radio = antd.Radio;
var container = document.getElementById('components-radio-demo-disable');

React.render(<div>
  <Radio defaultChecked={false} disabled={true}/> &nbsp;&nbsp;
  <Radio defaultChecked={true} disabled={true}/>
</div>, container);