窗口名:
【警告框】
函数调用:
【命名空间】asyncbox.warning(内容,标题,回调函数);
参数配置:
- content (String,Element)
└ 内容。
- title (String,Element)
└ 标题。
- function (function(action){})
└ 回调函数。
AsyncBox
代码:
示例一:
//如需阻止窗口关闭,请在判断 action 值内加入 return false asyncbox.warning('This is a warning ?','warning',function(action){ //alert 返回四个 action 值,分别是 'yes'、'no'、'cancel' 和 'close'。 if(action == 'yes'){ alert('yes'); } if(action == 'no'){ alert('no'); } if(action == 'cancel'){ alert('cancel'); } if(action == 'close'){ alert('close'); } });