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.

18 lines
342 B

---
order: 2
title: 修改延时
---
9 years ago
自定义时长 `10s`,默认时长为 `1.5s`
````jsx
import { message, Button } from 'antd';
const success = function () {
message.success('这是一条成功的提示,并将于10秒后消失', 10);
};
ReactDOM.render(<Button onClick={success}>自定义时长提示</Button>
, mountNode);
````