Posted in Javascript onAugust 26, 2019
一、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 }); },
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。
微信小程序事件 bindtap bindinput代码实例
- Author -
渺茫大海声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@