热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

uniapp提示框

uni-app官网提供的两种显示方式:第一种uni.showToast*title{string}提示的内容,长度与icon取值有关。icon{string}图标image{str


uni-app官网提供的两种显示方式:


第一种


uni.showToast



/*
title {string} 提示的内容,长度与 icon 取值有关。
icon {string} 图标
image {string} 自定义图标的本地路径
mask {boolean} 遮罩层
duration {number} 持续时间 默认1500
position {string} 显示位置 'top','center','bottom'
success {function} 成功的回调
fail {function} 失败的回调
complete {function} 结束的回调

*/
uni.showToast({
title: '标题',
duration: 2000
});
uni.hideToast(); //隐藏提示框

第二种


uni.showModal



/*
title {string} 提示的标题
content {string} 提示的内容
showCancel {boolean} 是否显示关闭按钮 true
cancelText {string} 取消按钮的文字,"取消",最多四个字符
cancelColor {HexColor} 取消按钮的文字颜色
confirmText {string} 确认按钮的文字,"取消",最多四个字符
confirmColor {HexColor} 确认按钮的文字颜色

success {function} 成功的回调
fail {function} 失败的回调
complete {function} 结束的回调

*/
uni.showModal({
title: '提示',
content: '这是一个模态弹窗',
success: function (res) {
if (res.confirm) {
console.log('用户点击确定');
} else if (res.cancel) {
console.log('用户点击取消');
}
}
});

官方的插件市场还有一些大神封装的提示框组件,有兴趣的可以参考下。附上链接



推荐阅读
author-avatar
szh
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有