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.
 
 

458 B

选择日期

  • order: 2

通过设置选择日期的回调事件 onChange,完成交互行为。


import { Datepicker } from 'antd';

const Picker = React.createClass({
  handleChange: function(value) {
    console.log(new Date(value.getTime()));
  },
  render: function() {
    return <Datepicker onChange={this.handleChange} />
  }
});

ReactDOM.render(
  <Picker />
, document.getElementById('components-datepicker-demo-select'));