mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 20:20:00 +08:00
717 B
717 B
order | title | ||||
---|---|---|---|---|---|
8 |
|
zh-CN
使用 RangePicker
实现日期范围选择有更好的交互体验。
en-US
By using RangePicker
to specify a date range, you can achieve a better interactive experience.
import { DatePicker } from 'antd';
const RangePicker = DatePicker.RangePicker;
function onChange(dates, dateStrings) {
console.log('From: ', dates[0], ', to: ', dates[1]);
console.log('From: ', dateStrings[0], ', to: ', dateStrings[1]);
}
ReactDOM.render(<div>
<RangePicker style={{ width: 200 }} onChange={onChange} />
<br />
<RangePicker showTime format="YYYY/MM/DD HH:mm:ss" onChange={onChange} />
</div>, mountNode);