当前位置: 编程技术>jquery
jquery easyUI使用JS显示Dialog
来源: 互联网 发布时间:2014-10-04
本文导语: 例子,jquery easyUI显示dialog提示信息。 代码示例: jquery easyUI使用JS显示Dialog--www. $(function () { $("#myDialog").dialog({ modal: true, ...
例子,jquery easyUI显示dialog提示信息。
代码示例:
jquery easyUI使用JS显示Dialog--www.
$(function () {
$("#myDialog").dialog({
modal: true,
collapsible: true, //设置可折叠
toolbar: [{ //设置工具栏数组
text: '添加',
iconCls: 'icon-add',
handler: function () {
$.messager.show({ showType: "fade", msg: "添加数据", title: "提示", timeout: 1000 });
}
}, {
text: '保存',
iconCls: 'icon-save',
handler: function () {
$.messager.show({ showType: "fade", msg: "保存数据", title: "提示", timeout: 1000 });
}
}],
buttons: [{ //设置下方按钮数组
text: '提交',
iconCls: 'icon-ok',
handler: function () {
$.messager.show({ showType: "fade", msg: "提交数据", title: "提示", timeout: 1000 });
}
}, {
text: '取消',
iconCls: 'icon-cancel',
handler: function () {
}
}]
});
});