1、$.messager.alert(title, msg, icon, fn)
1>、基本用法
代碼:
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head runat="server">
- <title>消息提示框</title>
- <link href="/jquery-easyui-1.2.4/themes/default/easyui.css" rel="stylesheet" type="text/css" />
- <link href="/jquery-easyui-1.2.4/themes/icon.css" rel="stylesheet" type="text/css" />
- <script src="/jquery-easyui-1.2.4/jquery-1.6.4.min.js" type="text/javascript"></script>
- <script src="/jquery-easyui-1.2.4/jquery.easyui.min.js" type="text/javascript"></script>
- <script src="/jquery-easyui-1.2.4/locale/easyui-lang-zh_CN.js" type="text/javascript"></script>
- <script type="text/javascript">
- $(function () {
- $.messager.alert("操作提示", "操作成功!");
- });
- </script>
- </head>
- <body>
- </body>
- </html>
效果圖:

2>、icon使用
icon四種設置:"error"、"info"、"question"、"warning"
效果:
- <script type="text/javascript">
- $(function () {
- $.messager.alert("操作提示", "操作成功!","info");
- });
- </script>

- <script type="text/javascript">
- $(function () {
- $.messager.alert("操作提示", "操作失敗!","error");
- });
- </script>

- <script type="text/javascript">
- $(function () {
- $.messager.alert("操作提示", "您確定要執行操作嗎!","question");
- });
- </script>

- <script type="text/javascript">
- $(function () {
- $.messager.alert("操作提示", "您確定要執行操作嗎!","warning");
- });
- </script>

3>、function使用
- <script type="text/javascript">
- $(function () {
- $.messager.alert("操作提示", "操作成功!", "info", function () {
- var i = 1;
- alert(i);
- });
- });
- </script>
2、$.messager.confirm(title, msg, fn)
代碼:
- <script type="text/javascript">
- $(function () {
- $.messager.confirm("操作提示", "您確定要執行操作嗎?", function (data) {
- if (data) {
- alert("確定");
- }
- else {
- alert("取消");
- }
- });
- });
- </script>
效果圖:

3、$.messager.prompt(title, msg, fn)
代碼:
- <script type="text/javascript">
- $(function () {
- $.messager.confirm("操作提示", "您確定要執行操作嗎?", function (data) {
- if (data) {
- alert("確定");
- }
- else {
- alert("取消");
- }
- });
- });
- </script>
效果圖:

4、$.messager.show(options)
代碼:
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head runat="server">
- <title>消息提示框</title>
- <link href="/jquery-easyui-1.2.4/themes/default/easyui.css" rel="stylesheet" type="text/css" />
- <link href="/jquery-easyui-1.2.4/themes/icon.css" rel="stylesheet" type="text/css" />
- <script src="/jquery-easyui-1.2.4/jquery-1.6.4.min.js" type="text/javascript"></script>
- <script src="/jquery-easyui-1.2.4/jquery.easyui.min.js" type="text/javascript"></script>
- <script src="/jquery-easyui-1.2.4/locale/easyui-lang-zh_CN.js" type="text/javascript"></script>
- <script type="text/javascript">
- $(function () {
- $.messager.show({
- title: "操作提示",
- msg: "請選擇您要刪除的記錄!",
- showType: 'slide',
- timeout: 5000
- });
- });
- </script>
- </head>
- <body>
- </body>
- </html>
或
- <script type="text/javascript">
- $(function () {
- var options = {
- title: "操作提示",
- msg: "請選擇您要刪除的記錄!",
- showType: 'slide',
- timeout: 5000
- };
- $.messager.show(options);
- });
- </script>
效果圖:

showType3種設置值:"show"、"slide"、"fade"
5、修改Button顯示文字
代碼:
- <script type="text/javascript">
- $(function () {
- $.messager.defaults = { ok: "是", cancel: "否" };
- $.messager.confirm("操作提示", "您確定要執行操作嗎?", function (data) {
- if (data) {
- alert("是");
- }
- else {
- alert("否");
- }
- });
- });
- </script>
效果圖:

6、方法
| 方法名 |
參數 |
描述 |
| $.messager.show |
options |
在屏幕的右下角顯示一個消息窗口。這些選項的參數可以是一下的一個配置對象: |
| $.messager.alert |
title, msg, icon, fn |
顯示一個警告窗口。參數如下: |
| $.messager.confirm |
title, msg, fn |
顯示一個含有確定和取消按鈕的確認消息窗口。參數如下: |
| $.messager.prompt |
title, msg, fn |
顯示一個確定和取消按鈕的信息提示窗口,提示用戶輸入一些文本。參數如下: |
7、擴展
可以通過$.messager.defaults方法自定義alert框的ok按鈕和cancel按鈕上顯示的文字。
| 名字 |
類型 |
描述 |
默認值 |
|
| ok |
字符串 |
Ok |
按鈕上的文本 |
Ok |
| cancel |
字符串 |
Cancel |
按鈕上的文本 |
Cancel |

