摘要:
validatemobile: function (mobile) { if (mobile.length == 0) { wx.showToast({ title: '请输入手机号!', icon: 'success', duration: 1500 }) return false; } if ( 阅读全文
2024年7月8日
摘要:
在微信小程序中,可以通过以下几种方式来获取输入框的值: 方式1: 使用 bindinput 绑定输入事件,通过 event.detail.value 获取输入框的值。具体操作如下:<input bindinput="onInput" placeholder="请输入内容"></input>Page( 阅读全文