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.
23 lines
430 B
Markdown
23 lines
430 B
Markdown
9 years ago
|
# 事件
|
||
|
|
||
|
- order: 4
|
||
|
|
||
|
当 Slider 的值发生改变时,会触发 onChange 事件,并把改变后的值作为参数传入。
|
||
|
|
||
|
---
|
||
|
|
||
|
````jsx
|
||
|
import { Slider } from 'antd';
|
||
|
|
||
|
function log(value) {
|
||
|
console.log(value);
|
||
|
}
|
||
|
|
||
|
ReactDOM.render(
|
||
|
<div>
|
||
|
<Slider defaultValue={30} onChange={log} />
|
||
|
<Slider range step={10} defaultValue={[20, 50]} onChange={log} />
|
||
|
</div>
|
||
|
, document.getElementById('components-slider-demo-event'));
|
||
|
````
|