微信小程序批量监听输入框对按钮样式进行控制
网络编程 2021-07-04 15:01www.168986.cn编程入门
这篇文章主要介绍了小程序批量监听输入框对按钮样式进行控制的实现代码,代码简单易懂,非常不错,具有一定的参考借鉴价值,需要的朋友可以参考下
在input组件上绑定data-model="xxx" bindinput="inputWatch",
监听输入框输入
<input placeholder="请输入6~12位密码" name="password" value="{{password}}" data-model="password" bindinput="inputWacth" type="password" maxlength="12" class="form-item-input"></input> inputWacth: function (e) { let item = e.currentTarget.dataset.model; this.setData({ [item]: e.detail.value }); }
当输入11位手机号后,验证码按钮变为可点状态;当3个输入框都有值时(密码大于等于6位,手机11位),保存按钮变为可点状态。
<form bindsubmit="formPhone" wx:else> <view class="form-wrap"> <view class="flex form-item"> <view class="form-item-text">密码</view> <input placeholder="请输入6~12位密码" name="password" value="{{password}}" data-model="password" bindinput="inputWacth" type="password" maxlength="12" class="form-item-input"></input> </view> <view class="flex form-item"> <view class="form-item-text">新手机</view> <input placeholder="请输入新手机号" name="aount" value="{{aount}}" data-model="aount" bindinput="inputWacth" maxlength="11" type="number" class="form-item-input"></input> <button class="form-item-btn" catchtap="sendCode" data-aount="{{aount}}" disabled="{{codeDisabled}}">{{codeText}}</button> </view> <view class="flex form-item"> <view class="form-item-text">验证码</view> <input placeholder="请输入验证码" name="verification" data-model="verification" bindinput="inputWacth" maxlength="6" class="form-item-input"></input> </view> </view> <view class="default-btn-wrap"> <button class="default-btn" loading="{{loading}}" form-type="submit" disabled="{{disabled}}">保存</button> </view> </form> var app = getApp(); var util = require('../../../utils/util.js'); var ck = require('../../../utils/check.js'); import { weChatUser } from '../../../utils/api.js' Page({ / 页面的初始数据 / data: { codeText: '验证码', // 按钮文字 disabled: true, // codeDisabled: true, currentTime: 60, aount: '', // 注册-账号 password: '', // 注册-密码 verification: '', // 验证码 }, // 修改手机号 formPhone: util.throttle((e) => { let that = this, password = e.detail.value.password, aount = e.detail.value.aount, verification = e.detail.value.verification; // 判断手机号密码 if (!ck.checkPhone(aount) || !ck.checkNull(password, '密码') || !ck.checkNull(verification, '密码')) { return } // 手机号密码验证通过后,发请求修改密码 let data = { "password": password, "phone": aount, "verificationCode": Number(verification) } let result = weChatUser.updatePhoneBinding(data) result.then((res) => { if (res) { wx.showToast({ title: '修改账号成功', mask: true }) setTimeout(() => { wx.navigateBack({ delta: 1 }) }, 2000) } }) // 成功后,返回上一页 }, 1000), // 发送修改手机号的验证码 sendCode: util.throttle(function (e) { let aount = e.currentTarget.dataset.aount; // 判断手机号密码 if (!ck.checkPhone(aount)) { return } ck.countDown(this) var data = { phone: Number(aount) } let result = weChatUser.getVerificationCode(data) result.then((res) => { if (res) { wx.showToast({ title: '发送成功', icon: 'none', mask: true }) } }) }, 1000), // 监听 输入(控制按钮样式变化) inputWacth: function (e) { let item = e.currentTarget.dataset.model; this.setData({ [item]: e.detail.value }); let len = this.data.password.length; if (this.data.aount && this.data.aount.length === 11) { this.setData({ codeDisabled: false }) if (len >= 6 && this.data.verification) { this.setData({ disabled: false }) } else { this.setData({ disabled: true }) } } }, / 生命周期函数--监听页面加载 / onLoad: function (options) { wx.setNavigationBarTitle({ title: options.title, }) } }) // check.js function checkPhone(phone) { // 判断手机号 if (!phone) { wx.showToast({ title: '请输入手机号', icon: 'none', duration: 2000 }) return false } if (phone.length < 11) { wx.showToast({ title: '手机号有误,请重新输入', icon: 'none', duration: 2000 }) return false } if (!(/^1[3456789]\d{9}$/.test(phone))) { wx.showToast({ title: '手机号有误,请重新输入', icon: 'none', duration: 2000 }) return false } return true } function checkNull(val, msg) { if (!val) { wx.showToast({ title: `请填写${msg}!`, icon: 'none' }) return false } return true } function countDown(self) { let currentTime = self.data.currentTime; self.setData({ codeText: currentTime + 's' }) let interval = setInterval(function () { self.setData({ codeText: (currentTime - 1) + 's' }) currentTime--; if (currentTime <= 0) { clearInterval(interval) self.setData({ codeText: '重新获取', currentTime: 60 }) } }, 1000) } module.exports = { checkPhone, checkNull, countDown } // util.js // 防止多次重复点击(函数节流) function throttle(fn, gapTime) { if (!gapTime) { gapTime = 1000; } let _lastTime = null; // 返回新函数 return function(e) { let _nowTime = +new Date(); if (_nowTime - _lastTime > gapTime || !_lastTime) { // fn(this, e); // 改变this和e fn.apply(this, arguments) _lastTime = _nowTime; } } } module.exports = { throttle }
以上所述是长沙网络推广给大家介绍的微信小程序批量监听输入框对按钮样式进行控制的实现代码,希望对大家有所帮助,如果大家有任何疑问请给我留言,长沙网络推广会及时回复大家的。在此也非常感谢大家对狼蚁SEO网站的支持!
如果你觉得本文对你有帮助,欢迎网络推广网站推广转载,烦请注明出处,谢谢!
上一篇:微信小程序列表时间戳转换实现过程解析
下一篇:基于JS实现简单滑块拼图游戏
编程语言
- 如何快速学会编程 如何快速学会ug编程
- 免费学编程的app 推荐12个免费学编程的好网站
- 电脑怎么编程:电脑怎么编程网咯游戏菜单图标
- 如何写代码新手教学 如何写代码新手教学手机
- 基础编程入门教程视频 基础编程入门教程视频华
- 编程演示:编程演示浦丰投针过程
- 乐高编程加盟 乐高积木编程加盟
- 跟我学plc编程 plc编程自学入门视频教程
- ug编程成航林总 ug编程实战视频
- 孩子学编程的好处和坏处
- 初学者学编程该从哪里开始 新手学编程从哪里入
- 慢走丝编程 慢走丝编程难学吗
- 国内十强少儿编程机构 中国少儿编程机构十强有
- 成人计算机速成培训班 成人计算机速成培训班办
- 孩子学编程网上课程哪家好 儿童学编程比较好的
- 代码编程教学入门软件 代码编程教程