最简单的调用方式:
$.msgbox(""); //the string is directly allocated as this: //$.msgbox("Hello, world!")
提示:可修改部分代码后运行
文本提示:
$.msgbox({ closeImg: 'close.gif', height:500, width:600, content:'Hello, world!', type :'text' });
提示:可修改部分代码后运行
警告框:
$.msgbox({ closeImg: 'close.gif', height:130, width:250, content:'Hello, world!', type :'alert', bgAnimate: false, // 禁止背景动画 boxAnimate: false, // 禁止提示框动画 enableDrag: false // 禁止拖拽 });
提示:可修改部分代码后运行
确认框:
$.msgbox({ closeImg: 'close.gif', height:130, width:250, content:'Hello, world?', type :'confirm', onClose:function(v){ if(v) alert("You've clicked 'Yes' button!"); else alert("You've clicked 'No' button or closed me!"); } });
提示:可修改部分代码后运行
自动关闭:
$.msgbox({ autoClose:10, closeImg: 'close.gif', height:500, width:600, content:'Hello, world!', type :'text' });
提示:可修改部分代码后运行
关闭后事件(可见确认框):
$.msgbox({ closeImg: 'close.gif', height:500, width:600, content:'Hello, world!', type :'text', onClose: function(){alert('你。。。你居然把我关了!')} });
提示:可修改部分代码后运行
Ajax:
$.msgbox({ closeImg: 'close.gif', height:500, width:600, content:'http://lanrenyizhan.com', type :'ajax', title: 'PWWANG.COM' });
提示:可修改部分代码后运行
Ajax完成后事件:
$.msgbox({ closeImg: 'close.gif', height:500, width:600, content:'http://lanrenyizhan.com', type :'ajax', title: 'PWWANG.COM', onAjaxed: function(data){alert(data)} });
提示:可修改部分代码后运行
iframe:(从外部关闭msgbox)
$.msgbox({ closeImg: 'close.gif', height:500, width:600, content:'outClose.html', type :'iframe', title: '从外部关闭msgbox' }); // 外部关闭提示框代码: 最简单的方式 $.closemsgbox(top.window.document) // $.closemsgbox({ // document : top.window.document, // bgAnimate: true, // 允许背景动画 // boxAnimate: true, // 允许提示框动画 // onClose: function() // 关闭时的事件 //});
提示:可修改部分代码后运行
input:
$.msgbox({ closeImg: 'close.gif', height:500, width:600, content:'请输入: ', type :'input', title: '请输入一个值', onInputed: function(v){alert('你输入的是:'+v)} });
提示:可修改部分代码后运行