You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
# 简单
|
|
|
|
|
|
|
|
- order: 1
|
|
|
|
|
|
|
|
最简单的用法。
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
````jsx
|
|
|
|
var Switch = antd.Switch;
|
|
|
|
var container = document.getElementById('components-switch-demo-disabled');
|
|
|
|
|
|
|
|
var Test = React.createClass({
|
|
|
|
getInitialState() {
|
|
|
|
return {
|
|
|
|
disabled: false
|
|
|
|
}
|
|
|
|
},
|
|
|
|
toggle(){
|
|
|
|
this.setState({
|
|
|
|
disabled: !this.state.disabled
|
|
|
|
});
|
|
|
|
},
|
|
|
|
render() {
|
|
|
|
return <div>
|
|
|
|
<Switch disabled={this.state.disabled} />
|
|
|
|
<br />
|
|
|
|
<br />
|
|
|
|
<button className="ant-btn ant-btn-primary" onClick={this.toggle}>Toggle disabled</button>
|
|
|
|
</div>;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
React.render(<Test />, container);
|
|
|
|
````
|