mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-23 06:58:33 +08:00
532 B
532 B
order | title | ||||
---|---|---|---|---|---|
4 |
|
zh-CN
展示具有具体含义的数据。
en-US
Display value within it's situation.
import { InputNumber } from 'antd';
function onChange(value) {
console.log('changed', value);
}
ReactDOM.render(
<div>
<InputNumber formatter={value => `$ ${value}`} defaultValue={100} onChange={onChange} />
<InputNumber formatter={value => `${value.replace('%', '')}%`} defaultValue={100} onChange={onChange} />
</div>
, mountNode);