Query EasyUI Messager基本使用(消息框)
参考链接:http://www.cnblogs.com/libingql/archive/2011/07/17/2109020.html
Common.ShowInfo = function (str) {
$.messager.alert('系统提示', str, 'info');
};
Common.ShowError = function (str) {
$.messager.alert('系统提示', str, 'error');
};
Common.ShowWarning = function (str) {
$.messager.alert('系统提示', str, 'warning');
};
Common.ShowQuestion = function (str) {
$.messager.alert('系统提示', str, 'question');
};
$.messager.confirm('系统提示', "确认要值机删除吗?", function (data) {
if (data) {//"确定"、"是"
//代码
}
else {
return;
}
});
方法
名称 |
参数 |
说明 |
$.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'); |