toastr
github: https://github.com/CodeSeven/toastr
注意:
- toastr 依赖jQuery
下载文件
wget http://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/toastr.min.js
wget http://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/toastr.min.css
wget https://cdn.bootcdn.net/ajax/libs/jquery/3.6.0/jquery.min.js
代码示例
// 居中显示
toastr.options.positionClass = 'toast-top-center';
toastr.info('info')
toastr.warning('warning')
toastr.success('success')
toastr.error('error')
效果