- 注册时间
- 2012-5-23
- 最后登录
- 2018-2-27
- 阅读权限
- 200
- 积分
- 7605
- 精华
- 0
- 帖子
- 3021
|
mini.MessageBox.buttonText = {
ok: "ok", //"OK",
cancel: "取消", //"Cancel",
yes: "是", //"Yes",
no: "否"//"No"
};
mini.showMessageBox({
title: "YESNOCANCEL",
iconCls: "mini-messagebox-question",
buttons: ["ok", "no", "cancel"],
message: "选择:确定,否,取消。",
callback: function (action) {
alert(action);
}
}); |
|