Enhancer.ZMessage 消息对象
alert(options) 弹框显示消息。
- @params options {String | Object} [必须] 可以是消息内容字符串,直接调用如:
Enhancer.ZMessage.alert('你好')
或者是配置项如下:- title {String} [可选] 消息标题。
- content {String} [必须] 消息内容。
- text {String} [可选] 按钮文本,默认为 OK。
- state {String} [可选] 显示状态:default | active | highlight | error 。
- width {String} [可选] 消息框宽度。
- confirm {Function} [可选] 用户点击确定之后的回调函数。
toast(options) 吐出消息。
- @params options {String | Object} [必须] 可以是消息内容字符串,直接调用如:
Enhancer.ZMessage.toast('你好')
或者是配置项如下:- content {String} [必须] 消息内容。
- state {String} [可选] 显示状态:default | active | highlight | error 。
- width {String} [可选] 消息框宽度,移动端无效。
- hPos {String} [可选] 水平位置:left | center | right 默认 center,移动端无效。
- vPos {String} [可选] 垂直位置:top | center | bottom 默认 center。
- duration {Number} 持续展示时间,毫秒,默认 3000。
【例】
Enhancer.ZMessage.toast({
content: '你好呀',
width: 500,
vPos: 'center',
duration: 10000
});
confirm(options) 确认消息。
- @params options {Object} [必须]
- title {String} [可选] 消息标题。
- content {String} [必须] 消息内容。
- width {String} [可选] 消息框宽度。
- cancelText {String} [可选] 取消按钮文本,默认 '否'。
- cancel {Function} [可选] 用户点取消之后的回调函数,参数 $d 对话框 DOM。
- okText {String} [可选] 确定按钮文本,默认 '是'。
- ok {Function} [可选] 用户点击确定之后的回调函数,参数 $d 对话框 DOM。
【例】
Enhancer.ZMessage.confirm({
title: '确认一下',
content: '要删除张三吗?',
width: 500,
ok: function($d) {
alert('done')
},
cancel: function($d) {
alert('canceled')
}
});