mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-04 13:08:41 +08:00
28 lines
515 B
Markdown
28 lines
515 B
Markdown
---
|
|
order: 5
|
|
title:
|
|
zh-CN: 自定义提示
|
|
en-US: Customerize tooltip
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
使用 `tipFormatter` 可以格式化 `Tooltip` 的内容,设置 `tipFormatter={null}`,则隐藏 `Tooltip`。
|
|
|
|
## en-US
|
|
|
|
Use `tipFormatter` to formart content of `Toolip`. If `tipFormatter` is null, hide it.
|
|
|
|
````jsx
|
|
import { Slider } from 'antd';
|
|
|
|
function formatter(value) {
|
|
return `${value}%`;
|
|
}
|
|
|
|
ReactDOM.render(<div>
|
|
<Slider tipFormatter={formatter} />
|
|
<Slider tipFormatter={null} />
|
|
</div>, mountNode);
|
|
````
|