91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

微信小程序如何實現彈出框

發布時間:2021-01-27 10:53:21 來源:億速云 閱讀:1046 作者:小新 欄目:移動開發

這篇文章給大家分享的是有關微信小程序如何實現彈出框的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

微信小程序如何實現彈出框

<view class="container" class="zn-uploadimg">
	<button type="primary"bindtap="showok">消息提示框</button> 
	<button type="primary"bindtap="modalcnt">模態彈窗</button> 
	<button type="primary"bindtap="actioncnt">操作菜單</button> 
</view>

1.消息提示——wx.showToast(OBJECT)

微信小程序如何實現彈出框
//show.js
//獲取應用實例  
var app = getApp()  
Page({
	showok:function() {
		wx.showToast({
		  	title: '成功',
		  	icon: 'success',
		  	duration: 2000
		})
	}
})
微信小程序如何實現彈出框
2.模態彈窗——wx.showModal(OBJECT)

微信小程序如何實現彈出框

//show.js
//獲取應用實例  
var app = getApp()  
Page({
	modalcnt:function(){
		wx.showModal({
			title: '提示',
			content: '這是一個模態彈窗',
			success: function(res) {
				if (res.confirm) {
				console.log('用戶點擊確定')
				} else if (res.cancel) {
				console.log('用戶點擊取消')
				}
			}
		})
	}
})

微信小程序如何實現彈出框

3.操作菜單——wx.showActionSheet(OBJECT)


//show.js
//獲取應用實例  
var app = getApp()  
Page({
	actioncnt:function(){
		wx.showActionSheet({
			itemList: ['A', 'B', 'C'],
			success: function(res) {
				console.log(res.tapIndex)
			},
			fail: function(res) {
				console.log(res.errMsg)
			}
		})
	}
})

微信小程序如何實現彈出框

4.指定modal彈出

微信小程序如何實現彈出框

  指定哪個modal,可以通過hidden屬性來進行選擇。

<!--show.wxml-->
<view class="container" class="zn-uploadimg">
	<button type="primary"bindtap="modalinput">modal有輸入框</button> 
</view>
<modal hidden="{{hiddenmodalput}}" title="請輸入驗證碼" confirm-text="提交" cancel-text="重置" bindcancel="cancel" bindconfirm="confirm">
    <input type='text'placeholder="請輸入內容" auto-focus/>
</modal>
//show.js 
//獲取應用實例  
var app = getApp()  
Page({
	data:{
        hiddenmodalput:true,
        //可以通過hidden是否掩藏彈出框的屬性,來指定那個彈出框
    },
	//點擊按鈕痰喘指定的hiddenmodalput彈出框
	modalinput:function(){
		this.setData({
		   hiddenmodalput: !this.data.hiddenmodalput
		})
	},
	//取消按鈕
	cancel: function(){
        this.setData({
            hiddenmodalput: true
        });
    },
    //確認
    confirm: function(){
        this.setData({
	        hiddenmodalput: true
	    })
    }
    
})

微信小程序如何實現彈出框

感謝各位的閱讀!關于“微信小程序如何實現彈出框”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

绍兴市| 江永县| 修武县| 亳州市| 昭平县| 浦县| 长武县| 武宣县| 庆城县| 凤山县| 桂平市| 克什克腾旗| 邮箱| 乐业县| 沙河市| 察雅县| 齐齐哈尔市| 太仓市| 蒲江县| 高阳县| 仪征市| 舞钢市| 巧家县| 会宁县| 仪陇县| 蕉岭县| 喜德县| 东安县| 东源县| 闽清县| 讷河市| 沿河| 和硕县| 黄平县| 宁乡县| 黄浦区| 报价| 海口市| 营口市| 凤庆县| 阜南县|