>= IOS 5.5
>= Android 5.5
使用说明 : 弹出 ActionSheet
参数
名称 | 类型 | 必选 | 描述 |
---|---|---|---|
title | String | 否 | ActionSheet 标题 |
cancel | String | 否 | 指定取消按钮的标题 |
items | Array | 是 | 选项标题 |
返回值
名称 | 类型 | 必选 | 描述 |
---|---|---|---|
type | Number | 是 | 0:点击普通item;1:取消按钮或空白区域 |
index | Number | 是 | 点击的item的下标,从0开始 |
Example
mqq.invoke("ui", "showActionSheet", {
"title" : "title",
"items" : ["item1", "item2"],
"cancel" : "cancel"
}, function (evt) {
alert(JSON.stringify(evt.data));
});