编程语言
首页 > 编程语言> > 微信小程序之showToast(消息框类型)

微信小程序之showToast(消息框类型)

作者:互联网

微信小程序API之showToast(消息框类型)

wxml:


<button bindtap="ts01">消息提示01</button>

<button bindtap="ts02">消息提示02</button>

<button bindtap="ts03">消息提示03</button>

<button bindtap="ts04">消息提示04</button> <!-- 自定义 -->

js:


Page({

    data: {

    },
    ts01:function () {
        wx.showToast({
          title: '订购成功!',
          icon:"success",
          duration:2000
        })
        
    },
    ts02:function () {
        wx.showToast({
          title: '订购成功!',
          icon:"loading",
          duration:2000
        })
        
    },
    ts03:function () {
        wx.showToast({
          title: '订购成功!',
          icon:"none",
          duration:2000
        })
        
    },
    ts04:function () {
        wx.showToast({
          title: '订购成功!',
          image:"https://i02piccdn.sogoucdn.com/1cd3f9780acc6e81",
          duration:2000
        })
        
    },
})

标签:function,showToast,title,微信,程序,2000,duration,wx
来源: https://blog.csdn.net/weixin_50569789/article/details/117571827