微信小程序 modal组件详细介绍

前端之家收集整理的这篇文章主要介绍了微信小程序 modal组件详细介绍前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

modal弹出框常用在提示一些信息比如:退出应用,清楚缓存,修改资料提交时一些提示等等。

常用属性

页面" hiddenModal: true },listenerButton:function() { this.setData({ hiddenModal: !this.data.hiddenModal }) },listenerConfirm:function() { this.setData({ hiddenModal: true }) },listenerCancel:function() { this.setData({ hiddenModal: true }) },onLoad:function(options){ // 页面初始化 options为页面跳转所带来的参数 },onReady:function(){ // 页面渲染完成 },onShow:function(){ // 页面显示 },onHide:function(){ // 页面隐藏 },onUnload:function(){ // 页面关闭 } })

文章:

原文链接:https://www.f2er.com/weapp/45513.html

猜你在找的微信小程序相关文章