--- order: 1 title: zh-CN: 带输入框的滑块 en-US: Slider with input field --- ## zh-CN 和 [数字输入框](/components/input-number/) 组件保持同步。 ## en-US Synchronize with [InptNumber](/components/input-number/) component. ````jsx import { Slider, InputNumber, Row, Col } from 'antd'; const IntegerStep = React.createClass({ getInitialState() { return { inputValue: 1, }; }, onChange(value) { this.setState({ inputValue: value, }); }, render() { return ( ); }, }); const DecimalStep = React.createClass({ getInitialState() { return { inputValue: 0, }; }, onChange(value) { this.setState({ inputValue: value, }); }, render() { return ( ); }, }); ReactDOM.render(
, mountNode); ````