小程式的事件 bindtap bindinput
阿新 • • 發佈:2019-01-11
一、bindtap事件
在wxml檔案裡繫結:
<view class='wel-list' bindtap='TZdown'> <image src="/images/welcome_08.png"></image> <text>C語言資料下載</text> </view>
在js檔案裡相應:
Page({ TZdown: function () { wx.navigateTo({ url: '../download/download' }); } })
二、bindinput事件
wxml檔案:
<input type="number" placeholder="請輸入手機號" class="inp-holder" maxlength="11" bindinput="getPhone" />
<input type="number" placeholder="請輸入驗證碼" class="inp-holder" maxlength="6" bindinput="getCode" />
js檔案:
// 拿到手機號 getPhone: function (e) {var val = e.detail.value; this.setData({ telphone: val }); }, // 拿到驗證碼 getCode: function (e) { var val = e.detail.value; this.setData({ code: val }); },
<input type="number" placeholder="請輸入手機號" class="inp-holder" maxlength="11" bindinput="getPhone" />