小程序 wx.showModal

wx.showModal({

            title: '提示',

            content: '您确定要删除该文件吗?',

            showCancel: true, //是否显示取消按钮-----》false去掉取消按钮

            cancelText: "否", //默认是“取消”

            cancelColor: 'skyblue', //取消文字的颜色

            confirmText: "是", //默认是“确定”

            confirmColor: 'skyblue', //确定文字的颜色

            success: function(res) {

              if (res.cancel) {

                //点击取消

                console.log("您点击了取消")

              } else if(res.confirm){

                //点击确定

                console.log("您点击了确定")

              }

            }

        })

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章