jQuery EasyUI API 中文文档 - 消息框(Messager)
Messager 消息框
用 $.messager.defaults 重写了 defaults。
依赖
- window
- linkbutton
- progressbar
用法
1. $.messager.alert('Warning','The warning message');
2. $.messager.confirm('Confirm','Are you sure you want to delete record?',function(r){
3. if (r){
4. alert('ok');
5. }
6. });
特性
名称 | 类型 | 说明 | 默认值 |
ok | string | 确定按钮的文字。 | Ok |
cancel | string | 取消按钮的文字。 | Cancel |
方法
名称 | 参数 | 说明 |
$.messager.show | options | 在屏幕的右下角显示一个消息窗口,options 是一个配置对象: |
$.messager.alert | title, msg, icon, fn | 显示一个提示窗口。参数: |
$.messager.confirm | title, msg, fn | 显示一个带“确定”和“取消”按钮的确认消息。参数: |
$.messager.prompt | title, msg, fn | 显示一个带确定和取消按钮的消息窗口,提示用户输入一些文字。参数: |
$.messager.progress | options or method | 显示一个进度的消息窗口。 代码示例 显示进度消息窗口: $.messager.progress(); 现在关闭消息窗口: $.messager.progress('close'); |