jquery easyui
$(this)
这是jQuery获取元素,this指的是上一级函数的对象
依赖
- window
- linkbutton
- progressbar
用法
- $.messager.alert('Warning','The warning message');
- $.messager.confirm('Confirm','Are you sure you want to delete record?',function(r){
- if (r){
- alert('ok');
- }
- });
特性
名称 |
类型 |
说明 |
默认值 |
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');
|
非本人所写,此文章转载自: 风流涕淌 (philoo.cnblogs.com)