1,引入jquery.messager.js
2 用法
html 有个id=showMessager300x200 的button
$(document).ready(function()
{
$("#showMessager300x200").click(function()
{
//设置窗口显示的大小
$.messager.lays(300, 200);
//该方法主要定义窗口以什么样的方式和速度呈现
//$.messager.anim(type,speed);
//$.messager.anim("fade",1000); //以fadeIn的动画方式显示
//$.messager.anim("show",1000); //以show的动画方式显示
//窗口显示的 标题 内容 多久后隐藏 内容可写链接
$.messager.show("hello ", "<a href='http://www.baidu.com'> Click >> </a>",5000);
});
});